Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12641
-gerrit
commit 34cff1861590d87ee177db73384e2f345a838e0a Author: Patrick Georgi patrick@georgi-clan.de Date: Fri Dec 4 16:52:18 2015 +0100
build system: add dependencies for GRUB2 and FILO
Make sure the build system knows how to start building the various integrated payloads we support.
Change-Id: I2128d09c78795e0a41b055975e9f7052e3d951ee Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- payloads/external/Makefile.inc | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index bfc24f1..344cbec 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -67,6 +67,7 @@ filo: CONFIG_FILO_MASTER=$(CONFIG_FILO_MASTER) \ CONFIG_FILO_STABLE=$(CONFIG_FILO_STABLE)
+payloads/external/FILO/filo/build/filo.elf: filo
grub2: $(MAKE) -C payloads/external/GRUB2 -f Makefile.inc \ @@ -74,3 +75,5 @@ grub2: CC="$(CC_x86_32)" LD="$(LD_x86_32)" OBJDUMP="$(OBJDUMP_x86_32)" \ OBJCOPY="$(OBJCOPY_x86_32)" STRIP="$(STRIP_x86_32)" \ CONFIG_GRUB2_MASTER=$(CONFIG_GRUB2_MASTER) + +payloads/external/GRUB2/grub2/build/default_payload.elf: grub2