diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-07 20:33:53 +0900 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-12-14 08:09:19 +0100 |
commit | 2e14f94cf4bc2f15ca5362e81ca3a987c79e3062 (patch) | |
tree | d95b6bbc8fd77ff992a9dee5e30be75aa47a35df /arch/microblaze | |
parent | bafcc61d998c1ca18f556d92a0e95335ac68c7da (diff) | |
download | linux-2e14f94cf4bc2f15ca5362e81ca3a987c79e3062.tar.bz2 |
microblaze: move "... is ready" messages to arch/microblaze/Makefile
To prepare for more fixes, move this to arch/microblaze/Makefile.
Otherwise, the same "... is ready" would be printed multiple times.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/Makefile | 2 | ||||
-rw-r--r-- | arch/microblaze/boot/Makefile | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index f6b7ea6db8a0..6cee1ca86532 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile @@ -84,9 +84,11 @@ archheaders: linux.bin linux.bin.gz linux.bin.ub: vmlinux $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ + @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' simpleImage.%: vmlinux $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ + @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' define archhelp echo '* linux.bin - Create raw binary' diff --git a/arch/microblaze/boot/Makefile b/arch/microblaze/boot/Makefile index 600e5a198bd2..96eefdca0d9b 100644 --- a/arch/microblaze/boot/Makefile +++ b/arch/microblaze/boot/Makefile @@ -9,15 +9,12 @@ OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary $(obj)/linux.bin: vmlinux FORCE $(call if_changed,objcopy) - @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' $(obj)/linux.bin.ub: $(obj)/linux.bin FORCE $(call if_changed,uimage) - @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' $(obj)/linux.bin.gz: $(obj)/linux.bin FORCE $(call if_changed,gzip) - @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' quiet_cmd_cp = CP $< $@$2 cmd_cp = cat $< >$@$2 || (rm -f $@ && echo false) @@ -35,6 +32,5 @@ $(obj)/simpleImage.%: vmlinux FORCE $(call if_changed,objcopy) $(call if_changed,uimage) $(call if_changed,strip,.strip) - @echo 'Kernel: $(UIMAGE_OUT) is ready' ' (#'`cat .version`')' clean-files += simpleImage.*.unstrip linux.bin.ub |