ARM64 fixes for UEFI and bootloader setting.

Export the bootloader so we don't attempt to install syslinux/patch isolinux which fails on arm64.

Also pass disable to uefi-secure-boot as we don't currently support it.

Signed-off-by: Steev Klimaszewski <steev@kali.org>
merge-requests/16/head
Steev Klimaszewski 4 years ago
parent 319e6a39db
commit 69b9412be6

@ -145,7 +145,8 @@ if [ -n "$OPT_pu" ]; then
KALI_CONFIG_OPTS="$KALI_CONFIG_OPTS --proposed-updates"
KALI_DIST="$KALI_DIST+pu"
fi
if [ "$ARCHES" = "arm64" ]; then
if [ "$KALI_ARCH" = "arm64" ]; then
KALI_CONFIG_OPTS="$KALI_CONFIG_OPTS --uefi-secure-boot disable"
fi
@ -212,6 +213,11 @@ BUILD_LOG=$(pwd)/build.log
case "$IMAGE_TYPE" in
live)
# Export the bootloader for arm64, otherwise live-build
# attempts to use both isolinux and grub and we only support grub.
if [ "$KALI_ARCH" = "arm64" ]; then
export LB_BOOTLOADERS=grub-efi
fi
if [ "$NO_CLEAN" = "" ]; then
run_and_log $SUDO lb clean --purge
fi

Loading…
Cancel
Save