aboutsummaryrefslogtreecommitdiff
path: root/payloads
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2023-09-01 15:53:33 +0200
committerMartin L Roth <gaumless@gmail.com>2024-05-11 18:28:30 +0000
commit6d5cc39a78caaa73d62a01e6a5c08351f1bc50b7 (patch)
treeef9a450a829436123c8ea39f2b0c5681e01fcf24 /payloads
parentcf5fc2312aa21d6a9cc9dea6fe3bb905a2f64086 (diff)
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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77606 Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/external/LinuxBoot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile
index 87066c2037..fc2c818983 100644
--- a/payloads/external/LinuxBoot/Makefile
+++ b/payloads/external/LinuxBoot/Makefile
@@ -33,7 +33,7 @@ endif
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)