Changed in grub-mkrescue-sed.sh default of MKRESCUE_SED_PROTECTIVE to "no"

This commit is contained in:
Thomas Schmitt 2016-12-25 11:25:51 +01:00
parent 08b316d445
commit 783e706116
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ echo >&2
# The mode "mbr_only" implements an alternative layout according to UEFI 2.4,
# section 2.5.1 and table 16. No GTP, HFS+, or APM.
# This mode produces a mountable ISO 9660 partition 1 only if variable
# MKRESCUE_SED_PROTECTIVE is set to "no".
# MKRESCUE_SED_PROTECTIVE is empty or set to "no".
#
# The mode "mbr_hfs" is like "mbr_only" but with HFS+ mentioned in APM.
# It is still compliant to UEFI with no potentially deceiving GPT.
@ -76,7 +76,7 @@ fi
# Replacement for option --protective-msdos-label. Either itself or empty text.
# If the environment variable contains the word "no", this means empty.
protective="--protective-msdos-label"
protective=""
if test -n "$MKRESCUE_SED_PROTECTIVE"
then
if test x"$MKRESCUE_SED_PROTECTIVE" = xno