]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/Config
cdrom: Fix building GRUB image for aarch64
[ipfire-2.x.git] / lfs / Config
index 82bdde066a991ca0629df53c81758a2f036093b6..63ca2954158ec39eb3882fd45ee8a2c3dba6887a 100644 (file)
@@ -79,6 +79,76 @@ DIR_TMP     = /tmp
 # Add the compiler location and version and specs to the ccache hash
 CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
 
+# We support EFI on x86_64 and aarch64
+ifeq "$(BUILD_ARCH)" "x86_64"
+       EFI = 1
+       EFI_ARCH = x64
+       GRUB_ARCH = $(BUILD_ARCH)
+endif
+
+ifeq "$(BUILD_ARCH)" "aarch64"
+       EFI = 1
+       EFI_ARCH = aa64
+       GRUB_ARCH = arm64
+endif
+
+# Basic modules
+GRUB_EFI_MODULES = \
+       configfile \
+       gzio \
+       linux \
+       loadenv \
+       normal \
+       regexp
+
+# Stuff for accessing file systems
+GRUB_EFI_MODULES += \
+       ext2 \
+       fat \
+       iso9660 \
+       part_gpt \
+       part_msdos \
+       udf
+
+# Graphics & IO
+GRUB_EFI_MODULES += \
+       all_video \
+       bitmap_scale \
+       font \
+       gfxmenu \
+       gfxterm \
+       jpeg \
+       png \
+       tga
+
+# Commands
+GRUB_EFI_MODULES += \
+       boot \
+       cat \
+       chain \
+       echo \
+       halt \
+       help \
+       ls \
+       minicmd \
+       probe \
+       reboot \
+       search \
+       search_fs_file \
+       search_fs_uuid \
+       search_label \
+       test \
+       true
+
+# Platform dependent modules
+ifeq "$(BUILD_ARCH)" "x86_64"
+       GRUB_EFI_MODULES += \
+               loadbios \
+               ahci \
+               at_keyboard \
+               usb_keyboard
+endif
+
 ###############################################################################
 # Common Macro Definitions
 ###############################################################################