From 4df20117943dcc5dab6705e8dad7a6cfbc30dfb0 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Wed, 3 Aug 2016 02:30:12 +0200 Subject: include/image.mk: allow image code to override uImage name Signed-off-by: John Crispin --- include/image-commands.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/image-commands.mk') diff --git a/include/image-commands.mk b/include/image-commands.mk index 160b5d8833..00cb3410e9 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -7,7 +7,7 @@ define Build/uImage mkimage -A $(LINUX_KARCH) \ -O linux -T kernel \ -C $(1) -a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \ - -n '$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION)' -d $@ $@.new + -n '$(if $(UIMAGE_NAME),$(UIMAGE_NAME),$(call toupper,$(LINUX_KARCH)) LEDE Linux-$(LINUX_VERSION))' -d $@ $@.new @mv $@.new $@ endef -- cgit v1.2.3