Maximilian Brune has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85957?usp=email )
Change subject: payloads/external/Makefile.mk: Update linuxboot warning ......................................................................
payloads/external/Makefile.mk: Update linuxboot warning
Only print the warning if Linuxboot payload is actually selected, because we don't care otherwise.
Signed-off-by: Maximilian Brune maximilian.brune@9elements.com Change-Id: I5008d685c52c1d4e0d7eba44c964c51a2a6f99c3 --- M payloads/external/Makefile.mk 1 file changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/85957/1
diff --git a/payloads/external/Makefile.mk b/payloads/external/Makefile.mk index 299f1ee..c279121 100644 --- a/payloads/external/Makefile.mk +++ b/payloads/external/Makefile.mk @@ -396,7 +396,10 @@ CONFIG_LINUXBOOT_CROSS_COMPILE_PATH=$(CROSS_COMPILE_$(LINUXBOOT_CROSS_COMPILE_ARCH-y)) endif # CONFIG_LINUXBOOT_CROSS_COMPILE_PATH else # CONFIG_LINUXBOOT_CROSS_COMPILE +ifeq ($(CONFIG_PAYLOAD_LINUXBOOT),y) + # only print warning when Linuxboot payload is actually selected $(warning "Using host toolchain to build Linuxboot") +endif # CONFIG_PAYLOAD_LINUXBOOT endif # CONFIG_LINUXBOOT_CROSS_COMPILE .PHONY: linuxboot payloads/external/LinuxBoot/build/Image payloads/external/LinuxBoot/build/initramfs linuxboot: