diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2014-01-25 18:12:13 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2014-01-25 18:12:13 +0000 |
commit | e41e531e3b6a5fa99db8b682c00e47fc15d3d401 (patch) | |
tree | f9b027ddea2cdc52df34c77eec2d8396245e9fac /target | |
parent | fe99a2d67d164825594513dc3e4e92d8ba239286 (diff) | |
download | upstream-e41e531e3b6a5fa99db8b682c00e47fc15d3d401.tar.gz upstream-e41e531e3b6a5fa99db8b682c00e47fc15d3d401.tar.bz2 upstream-e41e531e3b6a5fa99db8b682c00e47fc15d3d401.zip |
ar71xx: image: reserve 4 erase blocks on the TP-Link devices
This ensures that the generated images will have enough erase
blocks for JFFS2.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39397
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index d5aee0721c..1f181f4ce2 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -620,11 +620,13 @@ define Image/Build/TPLINKOLD ) > $(KDIR_TMP)/kernel-$(2).bin -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ + -X 0x40000 \ -k $(KDIR_TMP)/kernel-$(2).bin \ -r $(KDIR)/root.$(1) \ -o $(call factoryname,$(1),$(2)) -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ + -X 0x40000 \ -k $(KDIR_TMP)/kernel-$(2).bin \ -r $(KDIR)/root.$(1) \ -o $(call sysupname,$(1),$(2)) @@ -650,12 +652,14 @@ define Image/Build/TPLINK ) > $(KDIR_TMP)/kernel-$(2).bin -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION)\ + -X 0x40000 \ -k $(KDIR_TMP)/kernel-$(2).bin \ -r $(KDIR)/root.$(1) \ -a $(call rootfs_align,$(1)) -j \ -o $(call factoryname,$(1),$(2)) -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) -s\ + -X 0x40000 \ -k $(KDIR_TMP)/kernel-$(2).bin \ -r $(KDIR)/root.$(1) \ -a $(call rootfs_align,$(1)) -j \ @@ -676,12 +680,14 @@ Image/Build/TPLINK-LZMA/buildkernel=$(call PatchKernelLzma,$(2),$(3)) define Image/Build/TPLINK-LZMA -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) \ + -X 0x40000 \ -k $(KDIR_TMP)/vmlinux-$(2).bin.lzma \ -r $(KDIR)/root.$(1) \ -a $(call rootfs_align,$(1)) -j \ -o $(call factoryname,$(1),$(2)) -$(STAGING_DIR_HOST)/bin/mktplinkfw \ -H $(4) -W $(5) -F $(6) -N OpenWrt -V $(REVISION) $(7) -s \ + -X 0x40000 \ -k $(KDIR_TMP)/vmlinux-$(2).bin.lzma \ -r $(KDIR)/root.$(1) \ -a $(call rootfs_align,$(1)) -j \ |