diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-01-19 18:27:57 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-01-19 18:27:57 +0000 |
commit | 378c7f76893d1eb5d22a62e6daf996235fd38ed7 (patch) | |
tree | ad06aa00ff9e6940c99e26ebeca612a02873c55e | |
parent | d508091f1e32827d96ace1170e6ecb7493eaaf41 (diff) | |
download | upstream-378c7f76893d1eb5d22a62e6daf996235fd38ed7.tar.gz upstream-378c7f76893d1eb5d22a62e6daf996235fd38ed7.tar.bz2 upstream-378c7f76893d1eb5d22a62e6daf996235fd38ed7.zip |
ar71xx: fix image generation for TL-WR741ND/TL-WR841ND-v5
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19230 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 09d743c479..61f390d050 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -334,6 +334,10 @@ define Image/Build/Template/squashfs-only/squashfs $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7)) endef +define Image/Build/Template/4k/squashfs + $(call Image/Build/$(1),squashfs-4k,$(2),$(3),$(4),$(5),$(6),$(7)) +endef + define Image/Build/Template/64k/squashfs $(call Image/Build/$(1),squashfs,$(2),$(3),$(4),$(5),$(6),$(7)) endef @@ -432,7 +436,7 @@ define Image/Build/Profile/MZKW300NH endef define Image/Build/Profile/TLWR741NDV1 - $(call Image/Build/Template/squashfs-only/$(1),TPLINK4K,tl-wr741nd-v1,board=TL-WR741ND,TL-WR741NDv1) + $(call Image/Build/Template/4k/$(1),TPLINK,tl-wr741nd-v1,board=TL-WR741ND,TL-WR741NDv1) endef define Image/Build/Profile/TLWR841NV15 @@ -444,7 +448,7 @@ define Image/Build/Profile/TLWR841NDV3 endef define Image/Build/Profile/TLWR841NDV5 - $(call Image/Build/Template/squashfs-only/$(1),TPLINK4K,tl-wr841nd-v5,board=TL-WR741ND,TL-WR841NDv5) + $(call Image/Build/Template/4k/$(1),TPLINK,tl-wr841nd-v5,board=TL-WR741ND,TL-WR841NDv5) endef define Image/Build/Profile/TLWR941NDV2 |