[LEDE-DEV] image-commands.mk: remove at-sign for mv

Thomas Reifferscheid thomas at reifferscheid.org
Mon Feb 20 07:25:28 PST 2017


This is my first post to lede-dev, so hi everybody!

Please submit the attached patch. The @ sign in front of the "mv" 
command was significantly delaying the output to stdout.
When reviewing the make/build logs it was tricking me a whole lot and it 
mad me lose time. Removing the @ sign will get stdout and logs right 
about what happened when.

Please let me know your thoughts. Thank you.

Regards
Thomas


-- 
Thomas Reifferscheid
Krauskopfallee 39
D-65388 Schlangenbad
Tel.: +49 175 268 9153

-------------- next part --------------
--- lede-trunk/include/image-commands.mk.orig	2017-02-20 15:37:49.623129613 +0100
+++ lede-trunk/include/image-commands.mk	2017-02-20 15:38:07.427130154 +0100
@@ -8,7 +8,7 @@
 		-O linux -T kernel \
 		-C $(1) -a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
 		-n '$(if $(UIMAGE_NAME),$(UIMAGE_NAME),$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION))' -d $@ $@.new
-	@mv $@.new $@
+	mv $@.new $@
 endef
 
 define Build/buffalo-enc


More information about the Lede-dev mailing list