diff options
author | John Crispin <john@openwrt.org> | 2014-06-26 11:43:38 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-26 11:43:38 +0000 |
commit | baa534a8b7331541e6e522ba33b33476e3f67589 (patch) | |
tree | fd85ccd7b4fabb49c81794701a6115393595c4ee /target/linux/ar71xx/image/Makefile | |
parent | d3be71e141c754ab5e1fbb2c14ce1876d931e6a3 (diff) | |
download | upstream-baa534a8b7331541e6e522ba33b33476e3f67589.tar.gz upstream-baa534a8b7331541e6e522ba33b33476e3f67589.tar.bz2 upstream-baa534a8b7331541e6e522ba33b33476e3f67589.zip |
ar71xx: nbg6716: Enable procd nand sysupgrage
This enables the procd nand upgrade for ZyXEL NBG 6716. Also the ubi config
is cleaned up to match the wndr4300.
Signed-off-by: André Valentin <avalentin@marcant.net>
SVN-Revision: 41346
Diffstat (limited to 'target/linux/ar71xx/image/Makefile')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 877a761196..abc8b667e0 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -923,7 +923,6 @@ define Image/Build/ZyXELNAND $(eval kernelsize=$(call mtdpartsize,kernel,$(4))) $(eval imageraw=$(KDIR_TMP)/$(2)-raw.img) $(CP) $(KDIR)/root.$(1) $(KDIR_TMP)/ubi_root.img - echo -ne '\xde\xad\xc0\xde' > $(KDIR_TMP)/jffs2.eof $(call ubinize,ubinize-$(2).ini,$(KDIR_TMP),$(KDIR_TMP)/$(2)-root.ubi,128KiB,2048,-E 5) ( \ dd if=$(KDIR_TMP)/$(2)-kernel.jffs2; \ @@ -931,10 +930,7 @@ define Image/Build/ZyXELNAND ) > $(imageraw) dd if=$(imageraw) of=$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1)-factory.bin \ bs=128k conv=sync - ( \ - dd if=$(KDIR_TMP)/$(2)-kernel.jffs2; \ - dd if=$(KDIR)/root.$(1) bs=128k conv=sync \ - ) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1)-sysupgrade.bin + $(call Image/Build/SysupgradeNAND,$(2),squashfs,$(KDIR_TMP)/$(2)-kernel.jffs2) endef |