This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, efi has been updated via de7c8df83e23e82a4b757b6283ae06d2cd8eb14f (commit) from 0efda7ac67d7e16c555bc6d07d1808a8480fa94b (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit de7c8df83e23e82a4b757b6283ae06d2cd8eb14f Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Jul 25 10:54:35 2018 +0100
cdrom: Move list of EFI modules to lfs/cdrom
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: lfs/Config | 57 --------------------------------------------------------- lfs/cdrom | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 53 insertions(+), 58 deletions(-)
Difference in files: diff --git a/lfs/Config b/lfs/Config index 63ca29541..516fb1cab 100644 --- a/lfs/Config +++ b/lfs/Config @@ -92,63 +92,6 @@ ifeq "$(BUILD_ARCH)" "aarch64" 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 ############################################################################### diff --git a/lfs/cdrom b/lfs/cdrom index 37fb3329f..5faaa1704 100644 --- a/lfs/cdrom +++ b/lfs/cdrom @@ -74,6 +74,58 @@ ifeq "$(EFI)" "1" ISOHYBRID_ARGS += --uefi endif
+GRUB_EFI_MODULES = \ + all_video \ + at_keyboard \ + boot \ + bitmap_scale \ + cat \ + chain \ + configfile \ + disk \ + echo \ + efi_gop \ + efi_uga \ + ext2 \ + extcmd \ + fat \ + file \ + font \ + fxterm_menu \ + gfxterm \ + gfxmenu \ + gfxterm_background \ + gzio \ + halt \ + help \ + iso9660 \ + jpeg \ + loadbios \ + loadenv \ + loopback \ + linux \ + ls \ + memdisk \ + minicmd \ + nativedisk \ + normal \ + ntfs \ + part_gpt \ + part_msdos \ + png \ + probe \ + reboot \ + regexp \ + search \ + search_fs_file \ + search_fs_uuid \ + search_label \ + tar \ + test \ + tga \ + true \ + usb_keyboard + ############################################################################### # Top-level Rules ############################################################################### @@ -164,7 +216,7 @@ ifeq "$(EFI)" "1" --config=/tmp/grub-efi.cfg \ --compression=xz \ --prefix=/EFI/BOOT \ - $(GRUB_EFI_MODULES) + $$(for mod in $(GRUB_EFI_MODULES); do [ -f "/usr/lib/grub/$(GRUB_ARCH)-efi/$${mod}.mod" ] && echo "$${mod}"; done)
# Install GRUB configuration mkdir -pv /install/cdrom/EFI/BOOT
hooks/post-receive -- IPFire 2.x development tree