Skip to content

Commit

Permalink
add support for arm64 functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrfai committed Mar 7, 2024
1 parent b6da532 commit d1c5650
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions bin/fai-cd
Original file line number Diff line number Diff line change
Expand Up @@ -555,14 +555,16 @@ aname="Fully Automatic Installation by Thomas Lange, $isoversion"

case $(uname -m) in
x86_64)
create_grub2_image_x86 ;;
create_grub2_image_x86
provide_memtest_boot_option
mkiso_x86
;;
aarch64)
create_grub2_image_arm ;;
create_grub2_image_arm64
provide_memtest_boot_option
mkiso_arm64
;;
esac

provide_memtest_boot_option

mkiso

[ "$burn" -eq 1 ] && burniso
exit 0

0 comments on commit d1c5650

Please sign in to comment.