Skip to content

Commit a5dfb5f

Browse files
slo617svanheule
authored andcommitted
tplink-safeloader: add TP-Link RE205 v3 support
The resulting factory image has been tested on a TP-Link RE205 v3. It has been successfully upgraded an OpenWrt image. Information like "special_id"s that was needed to modify the tool has been read out from an original firmware upgrade package. Signed-off-by: Steffen Loley <slo-src@web.de>
1 parent c1e06da commit a5dfb5f

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

src/tplink-safeloader.c

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2762,6 +2762,49 @@ static struct device_info boards[] = {
27622762
.last_sysupgrade_partition = "file-system"
27632763
},
27642764

2765+
/** Firmware layout for the RE205 v3 */
2766+
{
2767+
.id = "RE205-V3",
2768+
.vendor = "",
2769+
.support_list =
2770+
"SupportList:\n"
2771+
"{product_name:RE205,product_ver:3.0.0,special_id:00000000}\n"
2772+
"{product_name:RE205,product_ver:3.0.0,special_id:45550000}\n"
2773+
"{product_name:RE205,product_ver:3.0.0,special_id:4A500000}\n"
2774+
"{product_name:RE205,product_ver:3.0.0,special_id:4B520000}\n"
2775+
"{product_name:RE205,product_ver:3.0.0,special_id:43410000}\n"
2776+
"{product_name:RE205,product_ver:3.0.0,special_id:41550000}\n"
2777+
"{product_name:RE205,product_ver:3.0.0,special_id:42520000}\n"
2778+
"{product_name:RE205,product_ver:3.0.0,special_id:55530000}\n"
2779+
"{product_name:RE205,product_ver:3.0.0,special_id:41520000}\n"
2780+
"{product_name:RE205,product_ver:3.0.0,special_id:52550000}\n"
2781+
"{product_name:RE205,product_ver:3.0.0,special_id:54570000}\n"
2782+
"{product_name:RE205,product_ver:3.0.0,special_id:45530000}\n"
2783+
"{product_name:RE205,product_ver:3.0.0,special_id:45470000}\n",
2784+
.part_trail = 0x00,
2785+
.soft_ver = SOFT_VER_TEXT("soft_ver:1.1.0\n"),
2786+
2787+
.partitions = {
2788+
{"fs-uboot", 0x00000, 0x20000},
2789+
{"firmware", 0x20000, 0x7a0000},
2790+
{"partition-table", 0x7c0000, 0x02000},
2791+
{"default-mac", 0x7c2000, 0x00020},
2792+
{"pin", 0x7c2100, 0x00020},
2793+
{"product-info", 0x7c3100, 0x01000},
2794+
{"soft-version", 0x7c4200, 0x01000},
2795+
{"support-list", 0x7c5200, 0x01000},
2796+
{"profile", 0x7c6200, 0x08000},
2797+
{"config-info", 0x7ce200, 0x00400},
2798+
{"user-config", 0x7d0000, 0x10000},
2799+
{"default-config", 0x7e0000, 0x10000},
2800+
{"radio", 0x7f0000, 0x10000},
2801+
{NULL, 0, 0}
2802+
},
2803+
2804+
.first_sysupgrade_partition = "os-image",
2805+
.last_sysupgrade_partition = "file-system"
2806+
},
2807+
27652808
/** Firmware layout for the RE220 v2 */
27662809
{
27672810
.id = "RE220-V2",

0 commit comments

Comments
 (0)