From 052bc689454201ca3d33ab55ecdf43467febb5d1 Mon Sep 17 00:00:00 2001 From: Stephen Boyd Date: Fri, 28 Apr 2017 00:40:28 -0700 Subject: [PATCH] ARM: boot: Silence 'zimage-dtb is ready' message We should use kecho here instead of echo, so that make -s will skip printing anything here. Otherwise, builds with make -s will be confused and consider this informational message a warning/error. Change-Id: I4c854636e5b8b7e8b11eba8e5a52824ebee50ea1 Signed-off-by: Stephen Boyd --- arch/arm/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile index 8849c2d20ac5..a5278293bd15 100644 --- a/arch/arm/boot/Makefile +++ b/arch/arm/boot/Makefile @@ -69,7 +69,7 @@ $(obj)/zImage: $(obj)/compressed/vmlinux FORCE $(obj)/zImage-dtb: $(obj)/zImage $(DTB_OBJS) FORCE $(call if_changed,cat) - @echo ' Kernel: $@ is ready' + @$(kecho) ' Kernel: $@ is ready' endif -- 2.11.0