[OpenWrt-Devel] [PATCH] ar71xx: image for AP121/16M

2015-12-06 Thread Norbert Wegener
Build image for the AP121 reference board with 16MB flash.

Signed-off-by: Norbert Wegener <n...@wegener-net.de>
---
 target/linux/ar71xx/image/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/target/linux/ar71xx/image/Makefile 
b/target/linux/ar71xx/image/Makefile
index d12ad8b..87da05d 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -1456,6 +1456,7 @@ 
ap113_mtd_layout=mtdparts=spi0.0:64k(u-boot),3008k(rootfs),896k(uImage),64k(NVRA
 
ap121_mtdlayout_2M=mtdparts=spi0.0:64k(u-boot)ro,1216k(rootfs),704k(kernel),64k(art)ro,1920k@0x1(firmware)
 
ap121_mtdlayout_4M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,2448k(rootfs),1200k(kernel),64k(nvram),64k(art)ro,3648k@0x5(firmware)
 
ap121_mtdlayout_8M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6144k(rootfs),1600k(kernel),64k(nvram),64k(art)ro,7744k@0x5(firmware)
+ap121_mtdlayout_16M=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,10944k(rootfs),4992k(kernel),64k(nvram),64k(art)ro,15936k@0x5(firmware)
 
ap132_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,1408k(kernel),6400k(rootfs),64k(art),7808k@0x5(firmware)
 
ap135_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,14528k(rootfs),1472k(kernel),64k(art)ro,16000k@0x5(firmware)
 
ap136_mtdlayout=mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,6336k(rootfs),1408k(kernel),64k(mib0),64k(art)ro,7744k@0x5(firmware)
@@ -2252,6 +2253,7 @@ $(eval $(call 
SingleProfile,AthLzma,64k,AP113,ap113,AP113,ttyS0,115200,$$(ap113_
 $(eval $(call 
SingleProfile,AthLzma,64k,AP121_2M,ap121-2M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_2M),RKuImage))
 $(eval $(call 
SingleProfile,AthLzma,64k,AP121_4M,ap121-4M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_4M),RKuImage))
 $(eval $(call 
SingleProfile,AthLzma,64k,AP121_8M,ap121-8M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_8M),RKuImage))
+$(eval $(call 
SingleProfile,AthLzma,64k,AP121_16M,ap121-16M,AP121,ttyATH0,115200,$$(ap121_mtdlayout_16M),RKuImage))
 $(eval $(call 
SingleProfile,AthLzma,64k,AP121MINI,ap121-mini,AP121-MINI,ttyATH0,115200,$$(ap121_mtdlayout_4M),RKuImage))
 $(eval $(call 
SingleProfile,AthLzma,64k,AP132,ap132,AP132,ttyS0,115200,$$(ap132_mtdlayout),KRuImage))
 $(eval $(call 
SingleProfile,AthLzma,64k,AP135,ap135-020,AP135-020,ttyS0,115200,$$(ap135_mtdlayout),RKuImage))
@@ -2389,7 +2391,7 @@ $(eval $(call 
SingleProfile,Zcomax,64k,ZCN1523H516,zcn-1523h-5-16,ZCN-1523H-5,tt
 
 $(eval $(call 
SingleProfile,ZyXEL,64k,NBG_460N_550N_550NH,nbg460n_550n_550nh,NBG460N,ttyS0,115200,NBG-460N))
 
-$(eval $(call MultiProfile,AP121,AP121_2M AP121_4M AP121_8M))
+$(eval $(call MultiProfile,AP121,AP121_2M AP121_4M AP121_8M AP121_16M))
 $(eval $(call MultiProfile,AP136,AP136_010 AP136_020))
 $(eval $(call MultiProfile,AP143,AP143_8M AP143_16M))
 $(eval $(call MultiProfile,AP147,AP147_010))
-- 
1.9.1
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] ar71xx: build image for TL-WR710N v2.1

2015-11-30 Thread Norbert Wegener
This patch just extends target/linux/ar71xx/image/Makefile to build
images also for version 2.1 of TL-WR710N
patch against the latest git

Signed off by: Norbert Wegener <n...@wegener-net.de>

---
 target/linux/ar71xx/image/Makefile | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/target/linux/ar71xx/image/Makefile 
b/target/linux/ar71xx/image/Makefile
index d12ad8b..74d26ef 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -596,6 +596,15 @@ define Device/tl-wr710n-v2
 CONSOLE := ttyATH0,115200
 endef
 
+define Device/tl-wr710n-v2.1
+$(Device/tplink-8mlzma)
+BOARDNAME := TL-WR710N
+DEVICE_PROFILE := TLWR710
+TPLINK_HWID := 0x0712
+TPLINK_HWREV := 0x0002
+CONSOLE := ttyATH0,115200
+endef
+
 define Device/tl-wr720n-v3
 $(Device/tplink-4mlzma)
 BOARDNAME := TL-WR720N-v3
@@ -611,7 +620,7 @@ define Device/tl-wr720n-v4
 TPLINK_HWID := 0x07200104
 CONSOLE := ttyATH0,115200
 endef
-TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3 
tl-wr720n-v4
+TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1 
tl-wr720n-v3 tl-wr720n-v4
 
 define Device/tl-wr740n-v1
 $(Device/tplink-4m)
-- 
1.9.1
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] ar71xx: build image for TL-WR710N v2.1

2015-11-29 Thread Norbert Wegener
# This patch just extends target/linux/ar71xx/image/Makefile to build
# images also for version 2.1 of TL-WR710N
# patch against the latest git

# Signed off by: Norbert Wegener <n...@wegener-net.de>
---
 target/linux/ar71xx/image/Makefile | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/target/linux/ar71xx/image/Makefile 
b/target/linux/ar71xx/image/Makefile
index d12ad8b..74d26ef 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -596,6 +596,15 @@ define Device/tl-wr710n-v2
 CONSOLE := ttyATH0,115200
 endef
 
+define Device/tl-wr710n-v2.1
+$(Device/tplink-8mlzma)
+BOARDNAME := TL-WR710N
+DEVICE_PROFILE := TLWR710
+TPLINK_HWID := 0x0712
+TPLINK_HWREV := 0x0002
+CONSOLE := ttyATH0,115200
+endef
+
 define Device/tl-wr720n-v3
 $(Device/tplink-4mlzma)
 BOARDNAME := TL-WR720N-v3
@@ -611,7 +620,7 @@ define Device/tl-wr720n-v4
 TPLINK_HWID := 0x07200104
 CONSOLE := ttyATH0,115200
 endef
-TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3 
tl-wr720n-v4
+TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1 
tl-wr720n-v3 tl-wr720n-v4
 
 define Device/tl-wr740n-v1
 $(Device/tplink-4m)
-- 
2.5.0
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] TL-WR710N V2.1

2015-11-24 Thread Norbert Wegener
# This patch just extends target/linux/ar71xx/image/Makefile to build
# images also for version 2.1 of TL-WR710N
# patch against the latest git

# Signed off by: Norbert Wegener <n...@wegener-net.de>
---
---
 target/linux/ar71xx/image/Makefile | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/target/linux/ar71xx/image/Makefile 
b/target/linux/ar71xx/image/Makefile
index 94c7f53..b07cdaf 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -571,6 +571,15 @@ define Device/tl-wr710n-v2
 CONSOLE := ttyATH0,115200
 endef
 
+define Device/tl-wr710n-v2.1
+$(Device/tplink-8mlzma)
+BOARDNAME := TL-WR710N
+DEVICE_PROFILE := TLWR710
+TPLINK_HWID := 0x0712
+TPLINK_HWREV := 0x0002
+CONSOLE := ttyATH0,115200
+endef
+
 define Device/tl-wr720n-v3
 $(Device/tplink-4mlzma)
 BOARDNAME := TL-WR720N-v3
@@ -586,7 +595,7 @@ define Device/tl-wr720n-v4
 TPLINK_HWID := 0x07200104
 CONSOLE := ttyATH0,115200
 endef
-TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3 
tl-wr720n-v4
+TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1 
tl-wr720n-v3 tl-wr720n-v4
 
 define Device/tl-wr740n-v1
 $(Device/tplink-4m)
-- 
2.5.0
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH 1/1] TL-WR710N-v2.1

2015-11-22 Thread Norbert Wegener
# now with a git send-email working...

# This patch just extends target/linux/ar71xx/image/Makefile to build
# images also for version 2.1 of TL-WR710N

# Signed off by: Norbert Wegener <n...@wegener-net.de>
---
 target/linux/ar71xx/image/Makefile | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/target/linux/ar71xx/image/Makefile 
b/target/linux/ar71xx/image/Makefile
index 013a215..da2e7d4 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -476,6 +476,15 @@ define Device/tl-wr710n-v2
 CONSOLE := ttyATH0,115200
 endef
 
+define Device/tl-wr710n-v2.1
+$(Device/tplink-8mlzma)
+BOARDNAME := TL-WR710N
+DEVICE_PROFILE := TLWR710
+TPLINK_HWID := 0x0712
+TPLINK_HWREV := 0x0002
+CONSOLE := ttyATH0,115200
+endef
+
 define Device/tl-wr720n-v3
 $(Device/tplink-4mlzma)
 BOARDNAME := TL-WR720N-v3
@@ -491,7 +500,7 @@ define Device/tl-wr720n-v4
 TPLINK_HWID := 0x07200104
 CONSOLE := ttyATH0,115200
 endef
-TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3 
tl-wr720n-v4
+TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1 
tl-wr720n-v3 tl-wr720n-v4
 
 define Device/tl-wr740n-v4
 $(Device/tplink-4mlzma)
-- 
2.5.0
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH] [001/001] TL-WR710N: create image for v2.1

2015-11-21 Thread Norbert Wegener
As git send-email seems to be broken here - permanently "Unable to
initialize SMTP properly" , the patch as attachment.

Norbert

On 21.11.2015 18:38, John Crispin wrote:
> Hi,
>
> the patch is unfortunately line wrapped and whitespace broken. try
> sending the patch using "git send-email"
>
>   John
>
> On 17/11/2015 20:41, Norbert Wegener wrote:
>> This patch just extends target/linux/ar71xx/image/Makefile to build
>> images also for version 2.1 of TL-WR710N
>>
>> diff --git a/target/linux/ar71xx/image/Makefile
>> b/target/linux/ar71xx/image/Makefile
>> index 013a215..da2e7d4 100644
>> --- a/target/linux/ar71xx/image/Makefile
>> +++ b/target/linux/ar71xx/image/Makefile
>> @@ -476,6 +476,15 @@ define Device/tl-wr710n-v2
>>  CONSOLE := ttyATH0,115200
>>  endef
>>  
>> +define Device/tl-wr710n-v2.1
>> +$(Device/tplink-8mlzma)
>> +BOARDNAME := TL-WR710N
>> +DEVICE_PROFILE := TLWR710
>> +TPLINK_HWID := 0x0712
>> +TPLINK_HWREV := 0x0002
>> +CONSOLE := ttyATH0,115200
>> +endef
>> +
>>  define Device/tl-wr720n-v3
>>  $(Device/tplink-4mlzma)
>>  BOARDNAME := TL-WR720N-v3
>> @@ -491,7 +500,7 @@ define Device/tl-wr720n-v4
>>  TPLINK_HWID := 0x07200104
>>  CONSOLE := ttyATH0,115200
>>  endef
>> -TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3
>> tl-wr720n-v4
>> +TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1
>> tl-wr720n-v3 tl-wr720n-v4
>>  
>>  define Device/tl-wr74:0n-v4
>>  $(Device/tplink-4mlzma)
>>
>> Signed off by: Norbert Wegener <n...@wegener-net.de>
>>
>>
>>
>> ___
>> openwrt-devel mailing list
>> openwrt-devel@lists.openwrt.org
>> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
>>



diff.sig
Description: PGP signature


signature.asc
Description: OpenPGP digital signature
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] [001/001] TL-WR710N: create image for v2.1

2015-11-17 Thread Norbert Wegener
This patch just extends target/linux/ar71xx/image/Makefile to build
images also for version 2.1 of TL-WR710N

diff --git a/target/linux/ar71xx/image/Makefile
b/target/linux/ar71xx/image/Makefile
index 013a215..da2e7d4 100644
--- a/target/linux/ar71xx/image/Makefile
+++ b/target/linux/ar71xx/image/Makefile
@@ -476,6 +476,15 @@ define Device/tl-wr710n-v2
 CONSOLE := ttyATH0,115200
 endef
 
+define Device/tl-wr710n-v2.1
+$(Device/tplink-8mlzma)
+BOARDNAME := TL-WR710N
+DEVICE_PROFILE := TLWR710
+TPLINK_HWID := 0x0712
+TPLINK_HWREV := 0x0002
+CONSOLE := ttyATH0,115200
+endef
+
 define Device/tl-wr720n-v3
 $(Device/tplink-4mlzma)
 BOARDNAME := TL-WR720N-v3
@@ -491,7 +500,7 @@ define Device/tl-wr720n-v4
 TPLINK_HWID := 0x07200104
 CONSOLE := ttyATH0,115200
 endef
-TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr720n-v3
tl-wr720n-v4
+TARGET_DEVICES += tl-wr703n-v1 tl-wr710n-v1 tl-wr710n-v2 tl-wr710n-v2.1
tl-wr720n-v3 tl-wr720n-v4
 
 define Device/tl-wr74:0n-v4
 $(Device/tplink-4mlzma)

Signed off by: Norbert Wegener <n...@wegener-net.de>



0xC544527E.asc
Description: application/pgp-keys


signature.asc
Description: OpenPGP digital signature
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel