Skip to content
Snippets Groups Projects
Commit fd978b70 authored by Timo Teräs's avatar Timo Teräs
Browse files

scripts/mkimg.base: add efi formats and filenames for arm and x86

parent acd1cd8f
No related branches found
No related tags found
No related merge requests found
...@@ -195,17 +195,11 @@ section_grub_efi() { ...@@ -195,17 +195,11 @@ section_grub_efi() {
local _format _efi local _format _efi
case "$ARCH" in case "$ARCH" in
x86_64) aarch64)_format="arm64-efi"; _efi="bootaa64.efi" ;;
_format="x86_64-efi" arm*) _format="arm-efi"; _efi="bootarm.efi" ;;
_efi="bootx64.efi" x86) _format="i386-efi"; _efi="bootia32.efi" ;;
;; x86_64) _format="x86_64-efi"; _efi="bootx64.efi" ;;
aarch64) *) return 0 ;;
_format="arm64-efi"
_efi="bootaa64.efi"
;;
*)
return 0
;;
esac esac
build_section grub_cfg boot/grub/grub.cfg $(grub_gen_config | checksum) build_section grub_cfg boot/grub/grub.cfg $(grub_gen_config | checksum)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment