Martin L Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77202?usp=email )
Change subject: payloads/external/LinuxBoot: Fix build ......................................................................
payloads/external/LinuxBoot: Fix build
Fix regression introduced in I25e757108e0dd473969fe5a192ad0733f1fe6286 "payloads/external/LinuxBoot: Clean up".
Add creation of the build folder as necessary dependency.
Change-Id: Ie76c914f6a705de0c275a05b5af82ac21243d522 Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/77202 Reviewed-by: Marvin Drees marvin.drees@9elements.com Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Maximilian Brune maximilian.brune@9elements.com --- M payloads/external/LinuxBoot/Makefile 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Marvin Drees: Looks good to me, but someone else must approve Maximilian Brune: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index aaa0769..397ffdc 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -10,7 +10,7 @@ LINUX_ARCH-$(CONFIG_LINUXBOOT_RISCV_RV32) = riscv LINUX_ARCH-$(CONFIG_LINUXBOOT_RISCV_RV64) = riscv
-build/Image: $(CONFIG_LINUXBOOT_KERNEL_PATH) +build/Image: $(CONFIG_LINUXBOOT_KERNEL_PATH) | build ln -s -r $< $@
@@ -21,7 +21,7 @@ include targets/u-root.mk endif
-build/initramfs: $(CONFIG_LINUXBOOT_INITRAMFS_PATH) +build/initramfs: $(CONFIG_LINUXBOOT_INITRAMFS_PATH) | build ifeq ($(CONFIG_LINUXBOOT_INITRAMFS_COMPRESSION_XZ),y) xz --keep --force --check=crc32 --lzma2=dict=1MiB $(CONFIG_LINUXBOOT_INITRAMFS_PATH) endif