Frans Hendriks has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/77606?usp=email )
Change subject: LinuxBoot/Makefile: initramfs not build for bzImage ......................................................................
LinuxBoot/Makefile: initramfs not build for bzImage
initramfs is not build when bzImage is selected
Add build/initramfs dependency to build/bzImage
BUG = N/A TEST = Built and boot facebook monolith
Change-Id: I002202a0340347e78ce22024761d997605bd3f72 Signed-off-by: Frans Hendriks fhendriks@eltan.com --- M payloads/external/LinuxBoot/Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/06/77606/1
diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index 397ffdc..1362c28 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -29,7 +29,7 @@
ifeq ($(CONFIG_LINUXBOOT_KERNEL_BZIMAGE),y)
-build/bzImage: $(kernel_dir)/arch/x86/boot/bzImage | build +build/bzImage: $(kernel_dir)/arch/x86/boot/bzImage build/initramfs | build cp $< $@
else ifeq ($(CONFIG_LINUXBOOT_KERNEL_UIMAGE),y)