[openwrt/openwrt] build: uImage: separate arguments into individual lines

LEDE Commits lede-commits at lists.infradead.org
Wed Nov 25 12:53:13 EST 2020


adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/8416d0626f57ff3303a44a7b9e29f97c3e380e63

commit 8416d0626f57ff3303a44a7b9e29f97c3e380e63
Author: Adrian Schmutzler <freifunk at adrianschmutzler.de>
AuthorDate: Wed Nov 25 15:48:40 2020 +0100

    build: uImage: separate arguments into individual lines
    
    Having one line per argument increases overview dramatically.
    
    Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
 include/image-commands.mk | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/include/image-commands.mk b/include/image-commands.mk
index a8faefbcff..de4c86c24a 100644
--- a/include/image-commands.mk
+++ b/include/image-commands.mk
@@ -394,11 +394,16 @@ define Build/tplink-v2-image
 endef
 
 define Build/uImage
-	mkimage -A $(LINUX_KARCH) \
-		-O linux -T kernel \
-		-C $(word 1,$(1)) -a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
+	mkimage \
+		-A $(LINUX_KARCH) \
+		-O linux \
+		-T kernel \
+		-C $(word 1,$(1)) \
+		-a $(KERNEL_LOADADDR) \
+		-e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
 		-n '$(if $(UIMAGE_NAME),$(UIMAGE_NAME),$(call toupper,$(LINUX_KARCH)) $(VERSION_DIST) Linux-$(LINUX_VERSION))' \
-		$(wordlist 2,$(words $(1)),$(1)) -d $@ $@.new
+		$(wordlist 2,$(words $(1)),$(1)) \
+		-d $@ $@.new
 	mv $@.new $@
 endef
 



More information about the lede-commits mailing list