Skip to content

Commit fbcc388

Browse files
phambourgDaniel Kiper
authored and
Daniel Kiper
committed
util/grub.d/30_os-prober.in: Conditionally show or hide chain and efi menu entries
On systems which support multiple boot platforms such as BIOS and EFI, it makes no sense to show menu entries which are not supported by the current boot platform. Menu entries generated from os-prober "chain" boot type use boot sector chainloading which is supported on PC BIOS platform only. Show "chain" menu entries only if boot platform is PC BIOS. Show "efi" menu entries only if boot platform is EFI. This is aimed to allow os-prober to report both EFI and PC BIOS boot loaders regardless of the current boot mode on x86 systems which support both EFI and legacy BIOS boot, in order to generate a config file which can be used with either BIOS or EFI boot. Signed-off-by: Pascal Hambourg <[email protected]> Reviewed-by: Daniel Kiper <[email protected]>
1 parent 56ccc5e commit fbcc388

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

util/grub.d/30_os-prober.in

+6
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ for OS in ${OSPROBED} ; do
162162

163163
onstr="$(gettext_printf "(on %s)" "${DEVICE}")"
164164
cat << EOF
165+
# This menu entry is supported only on PC BIOS platforms.
166+
if [ "\$grub_platform" = "pc" ]; then
165167
menuentry '$(echo "${LONGNAME} $onstr" | grub_quote)' $CLASS --class os \$menuentry_id_option 'osprober-chain-$(grub_get_device_id "${DEVICE}")' {
166168
EOF
167169
save_default_entry | grub_add_tab
@@ -186,6 +188,7 @@ EOF
186188
cat <<EOF
187189
chainloader +1
188190
}
191+
fi
189192
EOF
190193
;;
191194
efi)
@@ -194,6 +197,8 @@ EOF
194197
DEVICE=${DEVICE%@*}
195198
onstr="$(gettext_printf "(on %s)" "${DEVICE}")"
196199
cat << EOF
200+
# This menu entry is supported only on EFI platforms.
201+
if [ "\$grub_platform" = "efi" ]; then
197202
menuentry '$(echo "${LONGNAME} $onstr" | grub_quote)' $CLASS --class os \$menuentry_id_option 'osprober-efi-$(grub_get_device_id "${DEVICE}")' {
198203
EOF
199204
save_default_entry | sed -e "s/^/\t/"
@@ -202,6 +207,7 @@ EOF
202207
cat <<EOF
203208
chainloader ${EFIPATH}
204209
}
210+
fi
205211
EOF
206212
;;
207213
linux)

0 commit comments

Comments
 (0)