From 4b2d8cf1485ccdfc5871aec8408848d8db6df116 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Fri, 18 Mar 2016 21:24:37 +0100 Subject: Add support for 32-bit UEFI boot (disabled by default). This requires functionality in grub which is currently not enabled in Slackware's grub package. If you want a 32-bit Live ISO that boots on UEFI computers, you need to recompile Slackware's grub with the patch for grub.SlackBuild which you can find in the ./patches subdirectory. Then you need to set the variable "EFI32" to "YES" in the 'make_slackware_live.sh' script and (re-)generate your 32-bit ISO. The resulting 32-bit Live ISO will be UEFI-bootable. --- iso2usb.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'iso2usb.sh') diff --git a/iso2usb.sh b/iso2usb.sh index 75093db..c519035 100644 --- a/iso2usb.sh +++ b/iso2usb.sh @@ -469,6 +469,9 @@ if [ -n "$EFIOFFSET" ]; then if [ ! -f ${EFIMNT}/EFI/BOOT/bootx64.efi ]; then echo "-- Note: UEFI boot file 'bootx64.efi' not found on ISO." echo "-- UEFI boot will not be supported" + elif [ ! -f ${EFIMNT}/EFI/BOOT/bootia32.efi ]; then + echo "-- Note: UEFI boot file 'bootia32.efi' not found on ISO." + echo "-- 32-bit UEFI boot will not be supported" else EFIBOOT=1 fi -- cgit v1.2.3