templates: Enable fwsetup on EFI platforms only
Only perform call to fwsetup if one is on EFI platform. On all other platforms fwsetup command does not exists, and thus returns 0 and a useless uefi-firmware menu entry gets generated. Signed-off-by: Dimitri John Ledkov <dimitri.ledkov@canonical.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
2e32d23574
commit
ef562269bc
@ -31,10 +31,12 @@ LABEL="UEFI Firmware Settings"
|
||||
gettext_printf "Adding boot menu entry for UEFI Firmware Settings ...\n" >&2
|
||||
|
||||
cat << EOF
|
||||
fwsetup --is-supported
|
||||
if [ "\$grub_platform" = "efi" -a "\$?" = 0 ]; then
|
||||
menuentry '$LABEL' \$menuentry_id_option 'uefi-firmware' {
|
||||
fwsetup
|
||||
}
|
||||
if [ "\$grub_platform" = "efi" ]; then
|
||||
fwsetup --is-supported
|
||||
if [ "\$?" = 0 ]; then
|
||||
menuentry '$LABEL' \$menuentry_id_option 'uefi-firmware' {
|
||||
fwsetup
|
||||
}
|
||||
fi
|
||||
fi
|
||||
EOF
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user