diff options
author | Eric Hameleers <alien@slackware.com> | 2016-06-15 11:00:40 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2016-06-15 11:00:40 +0200 |
commit | dfafdd9c4094a7f987a18a583bb972ac6e71b41e (patch) | |
tree | 3b579458324991602dc7558979aed8ecbf3a8dd4 | |
parent | 930ccf2cb0520107fe72f6deef82d2145713a7b5 (diff) | |
download | liveslak-dfafdd9c4094a7f987a18a583bb972ac6e71b41e.tar.gz liveslak-dfafdd9c4094a7f987a18a583bb972ac6e71b41e.tar.xz |
Try to support UEFI hybrid ISO better in the xorriso commandline.
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index a504c0c..30a1215 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1872,7 +1872,7 @@ cd ${LIVE_STAGING} if [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "NO" ]; then UEFI_OPTS="-eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot boot/syslinux/efiboot.img" elif [ -f boot/syslinux/efiboot.img -a "$USEXORR" = "YES" ]; then - UEFI_OPTS="-eltorito-alt-boot -e boot/syslinux/efiboot.img -isohybrid-gpt-basdat -no-emul-boot" + UEFI_OPTS="-eltorito-alt-boot -e boot/syslinux/efiboot.img -no-emul-boot" else UEFI_OPTS="" fi @@ -1917,6 +1917,8 @@ else -c boot/syslinux/isolinux.boot \ -boot-load-size ${BOOTLOADSIZE} -boot-info-table -no-emul-boot \ ${UEFI_OPTS} \ + -isohybrid-mbr /usr/share/syslinux/isohdpfx.bin \ + -isohybrid-gpt-basdat \ -preparer "$(echo $LIVEDE |sed 's/BASE//') Live built by ${BUILDER}" \ -publisher "The Slackware Linux Project - http://www.slackware.com/" \ -A "${DISTRO^}-${SL_VERSION} for ${SL_ARCH} ($(echo $LIVEDE |sed 's/BASE//') Live $VERSION)" \ |