diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-09-24 06:13:14 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-09-24 06:13:14 +0000 |
commit | deefa6e3e96910199c0cc300708f52b1cd7dbbcd (patch) | |
tree | d6f2b107fd9be9baebc20152d52f1c6a90de9df0 | |
parent | 94591fcb0af8e8443a7734bf540f1e03e1beb6a1 (diff) |
ar71xx: image: use the board name for temporary mtdpart files
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38149 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index c7e36af3d0..0b7c98fd3e 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -491,12 +491,12 @@ define Image/Build/UBNT2 $(eval fwsize=$(call mtdpartsize,firmware,$(3))) $(call Sysupgrade/KRuImage,$(1),$(2),0,$$$$(($(fwsize)-4*64*1024)),64) if [ -e "$(call sysupname,$(1),$(2))" ]; then \ - dd if=$(call sysupname,$(1),$(2)) of=$(KDIR_TMP)/$(1)-mtdpart-kernel.bin bs=1024k count=1; \ - dd if=$(call sysupname,$(1),$(2)) of=$(KDIR_TMP)/$(1)-mtdpart-rootfs.bin bs=1024k skip=1; \ + dd if=$(call sysupname,$(1),$(2)) of=$(KDIR_TMP)/$(2)-mtdpart-kernel.bin bs=1024k count=1; \ + dd if=$(call sysupname,$(1),$(2)) of=$(KDIR_TMP)/$(2)-mtdpart-rootfs.bin bs=1024k skip=1; \ $(STAGING_DIR_HOST)/bin/mkfwimage \ -B $(4) -v $(5).$(6).v6.0.0-OpenWrt-$(REVISION) \ - -k $(KDIR_TMP)/$(1)-mtdpart-kernel.bin \ - -r $(KDIR_TMP)/$(1)-mtdpart-rootfs.bin \ + -k $(KDIR_TMP)/$(2)-mtdpart-kernel.bin \ + -r $(KDIR_TMP)/$(2)-mtdpart-rootfs.bin \ -o $(call factoryname,$(1),$(2)); \ fi endef |