From 2d4b7d175ca3c0017ff4971c03ad0c521d6f5cc0 Mon Sep 17 00:00:00 2001 From: Frans Hendriks Date: Fri, 1 Sep 2023 16:01:37 +0200 Subject: LinuxBoot/Makefile: Add check if initramfs needs to be built initramfs is built always, ignoring CONFIG_LINUXBOOT_BUILD_INITRAMFS Built initramfs only is CONFIG_LINUXBOOT_BUILD_INITRAMFS is set BUG = N/A TEST = Built and boot facebook monolith Change-Id: I0d575ff7528fceb06b5394642527713bb071c8b3 Signed-off-by: Frans Hendriks Reviewed-on: https://review.coreboot.org/c/coreboot/+/77607 Reviewed-by: Martin L Roth Tested-by: build bot (Jenkins) --- payloads/external/LinuxBoot/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'payloads') diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index 397ffdcc5d45..29339f14b309 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -21,7 +21,11 @@ ifeq ($(CONFIG_LINUXBOOT_UROOT),y) include targets/u-root.mk endif +ifeq ($(CONFIG_LINUXBOOT_BUILD_INITRAMFS),y) build/initramfs: $(CONFIG_LINUXBOOT_INITRAMFS_PATH) | build +else +build/initramfs: +endif ifeq ($(CONFIG_LINUXBOOT_INITRAMFS_COMPRESSION_XZ),y) xz --keep --force --check=crc32 --lzma2=dict=1MiB $(CONFIG_LINUXBOOT_INITRAMFS_PATH) endif -- cgit v1.2.3