From 043f2fe79872ad1e57e141a42ad3b532eb35e4d7 Mon Sep 17 00:00:00 2001 From: Steev Klimaszewski Date: Mon, 1 Feb 2021 16:05:20 -0600 Subject: [PATCH] Ensure grub is on the iso for arm64 Signed-off-by: Steev Klimaszewski --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.sh b/build.sh index 350eb23..bb3f6e2 100755 --- a/build.sh +++ b/build.sh @@ -268,6 +268,11 @@ case "$IMAGE_TYPE" in >simple-cdd/profiles/kali.downloads # Tasksel is required in the mirror for debian-cd echo tasksel >>simple-cdd/profiles/kali.downloads + # Grub is the only supported bootloader on arm64 + # so ensure it's on the iso for arm64. + if [ "$ARCH" = "arm64" ]; then + echo "grub-efi-arm64" >>simple-cdd/profiles/kali.downloads + fi # Update the postinst script cp bin/kali-finish-install simple-cdd/profiles/kali.postinst