65 lines
2.8 KiB
Diff
65 lines
2.8 KiB
Diff
|
From: Henryk Heisig <hyniu@o2.pl>
|
||
|
Date: Fri, 27 Oct 2017 00:23:17 +0200
|
||
|
Subject: ar71xx: increase kernel partition size for some TP-Link boards
|
||
|
|
||
|
This patch increases kernel partition size and re-enables image
|
||
|
generation for below TP-Link boards:
|
||
|
|
||
|
- archer-c58-v1
|
||
|
- archer-c60-v1
|
||
|
- tl-wr902ac-v1
|
||
|
- tl-wr942n-v1
|
||
|
|
||
|
Signed-off-by: Henryk Heisig <hyniu@o2.pl>
|
||
|
[commit message and title reworded]
|
||
|
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
|
||
|
|
||
|
diff --git a/target/linux/ar71xx/image/tp-link.mk b/target/linux/ar71xx/image/tp-link.mk
|
||
|
index ed45866fcbe8d35af663799a91b09b5c8fd613bc..be7e846c88f9ebbb8a4e4840e690d7864386bf64 100644
|
||
|
--- a/target/linux/ar71xx/image/tp-link.mk
|
||
|
+++ b/target/linux/ar71xx/image/tp-link.mk
|
||
|
@@ -130,7 +130,7 @@ define Device/archer-c58-v1
|
||
|
IMAGES := sysupgrade.bin factory.bin
|
||
|
IMAGE/sysupgrade.bin := append-rootfs | tplink-safeloader sysupgrade
|
||
|
IMAGE/factory.bin := append-rootfs | tplink-safeloader factory
|
||
|
- MTDPARTS := spi0.0:64k(u-boot)ro,64k(mac)ro,1344k(kernel),6592k(rootfs),64k(tplink)ro,64k(art)ro,7936k@0x20000(firmware)
|
||
|
+ MTDPARTS := spi0.0:64k(u-boot)ro,64k(mac)ro,7936k(firmware),64k(tplink)ro,64k(art)ro
|
||
|
endef
|
||
|
TARGET_DEVICES += archer-c58-v1
|
||
|
|
||
|
@@ -160,7 +160,7 @@ define Device/archer-c60-v1
|
||
|
IMAGES := sysupgrade.bin factory.bin
|
||
|
IMAGE/sysupgrade.bin := append-rootfs | tplink-safeloader sysupgrade
|
||
|
IMAGE/factory.bin := append-rootfs | tplink-safeloader factory
|
||
|
- MTDPARTS := spi0.0:64k(u-boot)ro,64k(mac)ro,1344k(kernel),6592k(rootfs),64k(tplink)ro,64k(art)ro,7936k@0x20000(firmware)
|
||
|
+ MTDPARTS := spi0.0:64k(u-boot)ro,64k(mac)ro,7936k(firmware),64k(tplink)ro,64k(art)ro
|
||
|
endef
|
||
|
TARGET_DEVICES += archer-c60-v1
|
||
|
|
||
|
diff --git a/tools/firmware-utils/src/tplink-safeloader.c b/tools/firmware-utils/src/tplink-safeloader.c
|
||
|
index 67e2c4475bbd468bd20915767a481711ae872a3a..11ff2e56e19ec3780f988baf7257810530165b23 100644
|
||
|
--- a/tools/firmware-utils/src/tplink-safeloader.c
|
||
|
+++ b/tools/firmware-utils/src/tplink-safeloader.c
|
||
|
@@ -400,8 +400,8 @@ static struct device_info boards[] = {
|
||
|
{"profile", 0x11700, 0x03900},
|
||
|
{"default-config", 0x15000, 0x04000},
|
||
|
{"user-config", 0x19000, 0x04000},
|
||
|
- {"os-image", 0x20000, 0x150000},
|
||
|
- {"file-system", 0x170000, 0x678000},
|
||
|
+ {"os-image", 0x20000, 0x180000},
|
||
|
+ {"file-system", 0x1a0000, 0x648000},
|
||
|
{"certyficate", 0x7e8000, 0x08000},
|
||
|
{"radio", 0x7f0000, 0x10000},
|
||
|
{NULL, 0, 0}
|
||
|
@@ -473,8 +473,8 @@ static struct device_info boards[] = {
|
||
|
{"profile", 0x11700, 0x03900},
|
||
|
{"default-config", 0x15000, 0x04000},
|
||
|
{"user-config", 0x19000, 0x04000},
|
||
|
- {"os-image", 0x20000, 0x150000},
|
||
|
- {"file-system", 0x170000, 0x678000},
|
||
|
+ {"os-image", 0x20000, 0x180000},
|
||
|
+ {"file-system", 0x1a0000, 0x648000},
|
||
|
{"certyficate", 0x7e8000, 0x08000},
|
||
|
{"radio", 0x7f0000, 0x10000},
|
||
|
{NULL, 0, 0}
|