diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-12-04 16:52:18 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-12-05 16:06:47 +0100 |
commit | 864b48daf053265257e56d44142db2e27b84c873 (patch) | |
tree | 17b1653bb31dda26beaa29a4c09511bf5cd71913 | |
parent | ec90adb2e71b9e654cc1007143aa450c3996b4a8 (diff) | |
download | coreboot-864b48daf053265257e56d44142db2e27b84c873.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/12641
Reviewed-by: Alexander Couzens <lynxis@fe80.eu>
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | payloads/external/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index d15c398053..0854947637 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -54,6 +54,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 \ @@ -61,3 +62,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 |