From: Stephen Boyd Date: Fri, 28 Apr 2017 07:40:28 +0000 (-0700) Subject: ARM: boot: Silence 'zimage-dtb is ready' message X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=052bc689454201ca3d33ab55ecdf43467febb5d1;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git 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 --- 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