OSDN Git Service

ARM: boot: Silence 'zimage-dtb is ready' message
authorStephen Boyd <sboyd@codeaurora.org>
Fri, 28 Apr 2017 07:40:28 +0000 (00:40 -0700)
committerStephen Boyd <sboyd@codeaurora.org>
Fri, 28 Apr 2017 07:42:07 +0000 (00:42 -0700)
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 <sboyd@codeaurora.org>
arch/arm/boot/Makefile

index 8849c2d..a527829 100644 (file)
@@ -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