firmware-utils: tplink-safeloader: improve soft-version customisation
Some devices using the safeloader firmware format require a minimum or specific version to be set in the soft-version metadata partition. Currently only custom text values can be provided, but not all device firmware support this format. Modify the device info struct to allow for more well-defined types of soft-version overwrites, and provide a few macros for easy value initialisation. Requires all existing values to be updated to match the new structure. Signed-off-by: Sander Vanheule <sander@svanheule.net> [Adapt TL-WA1201-V2 entry too] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
02f151c7e7
commit
0b1f986c4c
@ -7,7 +7,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME := firmware-utils
|
||||
PKG_RELEASE := 10
|
||||
PKG_RELEASE := 11
|
||||
|
||||
include $(INCLUDE_DIR)/host-build.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
@ -63,19 +63,40 @@ enum partition_trail_value {
|
||||
PART_TRAIL_NONE = 0x100
|
||||
};
|
||||
|
||||
/** soft-version value overwrite types
|
||||
* The default (for an uninitialised soft_ver field) is to use the numerical
|
||||
* version number "0.0.0"
|
||||
*/
|
||||
enum soft_ver_type {
|
||||
SOFT_VER_TYPE_NUMERIC = 0,
|
||||
SOFT_VER_TYPE_TEXT = 1,
|
||||
};
|
||||
|
||||
/** Firmware layout description */
|
||||
struct device_info {
|
||||
const char *id;
|
||||
const char *vendor;
|
||||
const char *support_list;
|
||||
enum partition_trail_value part_trail;
|
||||
const char *soft_ver;
|
||||
struct {
|
||||
enum soft_ver_type type;
|
||||
union {
|
||||
const char *text;
|
||||
uint8_t num[3];
|
||||
};
|
||||
} soft_ver;
|
||||
uint32_t soft_ver_compat_level;
|
||||
struct flash_partition_entry partitions[MAX_PARTITIONS+1];
|
||||
const char *first_sysupgrade_partition;
|
||||
const char *last_sysupgrade_partition;
|
||||
};
|
||||
|
||||
#define SOFT_VER_TEXT(_t) {.type = SOFT_VER_TYPE_TEXT, .text = _t}
|
||||
#define SOFT_VER_NUMERIC(_maj, _min, _patch) { \
|
||||
.type = SOFT_VER_TYPE_NUMERIC, \
|
||||
.num = {_maj, _min, _patch}}
|
||||
#define SOFT_VER_DEFAULT SOFT_VER_NUMERIC(0, 0, 0)
|
||||
|
||||
struct __attribute__((__packed__)) meta_header {
|
||||
uint32_t length;
|
||||
uint32_t zero;
|
||||
@ -129,7 +150,7 @@ static struct device_info boards[] = {
|
||||
"CPE220(TP-LINK|US|N300-2):1.1\r\n"
|
||||
"CPE220(TP-LINK|EU|N300-2):1.1\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -168,7 +189,7 @@ static struct device_info boards[] = {
|
||||
"CPE210(TP-LINK|EU|N300-2):2.0\r\n"
|
||||
"CPE210(TP-LINK|US|N300-2):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -210,7 +231,7 @@ static struct device_info boards[] = {
|
||||
"CPE210(TP-LINK|UN|N300-2|00000000):3.20\r\n"
|
||||
"CPE210(TP-LINK|US|N300-2|55530000):3.20\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -251,7 +272,7 @@ static struct device_info boards[] = {
|
||||
"CPE220(TP-LINK|EU|N300-2):2.0\r\n"
|
||||
"CPE220(TP-LINK|US|N300-2):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -290,7 +311,7 @@ static struct device_info boards[] = {
|
||||
"CPE220(TP-LINK|EU|N300-2):3.0\r\n"
|
||||
"CPE220(TP-LINK|US|N300-2):3.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -329,7 +350,7 @@ static struct device_info boards[] = {
|
||||
"CPE520(TP-LINK|US|N300-5):1.1\r\n"
|
||||
"CPE520(TP-LINK|EU|N300-5):1.1\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -370,7 +391,7 @@ static struct device_info boards[] = {
|
||||
"CPE510(TP-LINK|EU|N300-5):2.0\r\n"
|
||||
"CPE510(TP-LINK|US|N300-5):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -414,7 +435,7 @@ static struct device_info boards[] = {
|
||||
"CPE510(TP-LINK|US|N300-5|55530000):3.20\r\n"
|
||||
"CPE510(TP-LINK|EU|N300-5|45550000):3.20\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -453,7 +474,7 @@ static struct device_info boards[] = {
|
||||
"CPE610(TP-LINK|EU|N300-5):1.0\r\n"
|
||||
"CPE610(TP-LINK|US|N300-5):1.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -492,7 +513,7 @@ static struct device_info boards[] = {
|
||||
"CPE610(TP-LINK|EU|N300-5):2.0\r\n"
|
||||
"CPE610(TP-LINK|US|N300-5):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -523,7 +544,7 @@ static struct device_info boards[] = {
|
||||
"WBS210(TP-LINK|US|N300-2):1.20\r\n"
|
||||
"WBS210(TP-LINK|EU|N300-2):1.20\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -554,7 +575,7 @@ static struct device_info boards[] = {
|
||||
"WBS210(TP-LINK|US|N300-2|55530000):2.0\r\n"
|
||||
"WBS210(TP-LINK|EU|N300-2|45550000):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -586,7 +607,7 @@ static struct device_info boards[] = {
|
||||
"WBS510(TP-LINK|EU|N300-5):1.20\r\n"
|
||||
"WBS510(TP-LINK|CA|N300-5):1.20\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -618,7 +639,7 @@ static struct device_info boards[] = {
|
||||
"WBS510(TP-LINK|EU|N300-5|45550000):2.0\r\n"
|
||||
"WBS510(TP-LINK|CA|N300-5|43410000):2.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -640,6 +661,50 @@ static struct device_info boards[] = {
|
||||
.last_sysupgrade_partition = "support-list",
|
||||
},
|
||||
|
||||
/** Firmware layout for the AD7200 */
|
||||
{
|
||||
.id = "AD7200",
|
||||
.vendor = "",
|
||||
.support_list =
|
||||
"SupportList:\r\n"
|
||||
"{product_name:AD7200,product_ver:1.0.0,special_id:00000000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"SBL1", 0x00000, 0x20000},
|
||||
{"MIBIB", 0x20000, 0x20000},
|
||||
{"SBL2", 0x40000, 0x20000},
|
||||
{"SBL3", 0x60000, 0x30000},
|
||||
{"DDRCONFIG", 0x90000, 0x10000},
|
||||
{"SSD", 0xa0000, 0x10000},
|
||||
{"TZ", 0xb0000, 0x30000},
|
||||
{"RPM", 0xe0000, 0x20000},
|
||||
{"fs-uboot", 0x100000, 0x70000},
|
||||
{"uboot-env", 0x170000, 0x40000},
|
||||
{"radio", 0x1b0000, 0x40000},
|
||||
{"os-image", 0x1f0000, 0x400000},
|
||||
{"file-system", 0x5f0000, 0x1900000},
|
||||
{"default-mac", 0x1ef0000, 0x00200},
|
||||
{"pin", 0x1ef0200, 0x00200},
|
||||
{"device-id", 0x1ef0400, 0x00200},
|
||||
{"product-info", 0x1ef0600, 0x0fa00},
|
||||
{"partition-table", 0x1f00000, 0x10000},
|
||||
{"soft-version", 0x1f10000, 0x10000},
|
||||
{"support-list", 0x1f20000, 0x10000},
|
||||
{"profile", 0x1f30000, 0x10000},
|
||||
{"default-config", 0x1f40000, 0x10000},
|
||||
{"user-config", 0x1f50000, 0x40000},
|
||||
{"qos-db", 0x1f90000, 0x40000},
|
||||
{"usb-config", 0x1fd0000, 0x10000},
|
||||
{"log", 0x1fe0000, 0x20000},
|
||||
{NULL, 0, 0}
|
||||
},
|
||||
|
||||
.first_sysupgrade_partition = "os-image",
|
||||
.last_sysupgrade_partition = "file-system"
|
||||
},
|
||||
|
||||
/** Firmware layout for the C2600 */
|
||||
{
|
||||
.id = "C2600",
|
||||
@ -648,7 +713,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"{product_name:Archer C2600,product_ver:1.0.0,special_id:00000000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/**
|
||||
We use a bigger os-image partition than the stock images (and thus
|
||||
@ -700,7 +765,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer A7,product_ver:5.0.0,special_id:54570000}\n"
|
||||
"{product_name:Archer A7,product_ver:5.0.0,special_id:52550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -738,7 +803,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:ArcherC2,product_ver:3.0.0,special_id:55530000}\n"
|
||||
"{product_name:ArcherC2,product_ver:3.0.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:3.0.1\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:3.0.1\n"),
|
||||
|
||||
/** We're using a dynamic kernel/rootfs split here */
|
||||
|
||||
@ -776,7 +841,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:ArcherC25,product_ver:1.0.0,special_id:55530000}\n"
|
||||
"{product_name:ArcherC25,product_ver:1.0.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -815,7 +880,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C58,product_ver:1.0.0,special_id:45550000}\r\n"
|
||||
"{product_name:Archer C58,product_ver:1.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x10000},
|
||||
@ -850,7 +915,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C59,product_ver:1.0.0,special_id:52550000}\r\n"
|
||||
"{product_name:Archer C59,product_ver:1.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -888,7 +953,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C59,product_ver:2.0.0,special_id:45550000}\r\n"
|
||||
"{product_name:Archer C59,product_ver:2.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:2.0.0 Build 20161206 rel.7303\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:2.0.0 Build 20161206 rel.7303\n"),
|
||||
|
||||
/** We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -928,7 +993,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C6,product_ver:2.0.0,special_id:52550000}\r\n"
|
||||
"{product_name:Archer C6,product_ver:2.0.0,special_id:4A500000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.9.1\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.9.1\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -963,7 +1028,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer A6,product_ver:2.0.0,special_id:54570000}\n"
|
||||
"{product_name:Archer C6,product_ver:2.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.9.1\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.9.1\n"),
|
||||
|
||||
.partitions = {
|
||||
{"factory-boot", 0x00000, 0x20000},
|
||||
@ -999,7 +1064,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C6,product_ver:3.20,special_id:4A500000}"
|
||||
"{product_name:Archer C6,product_ver:3.20,special_id:4B520000}",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.9\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.9\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x40000},
|
||||
@ -1038,7 +1103,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer A6,product_ver:3.0.0,special_id:55530000}\n"
|
||||
"{product_name:Archer A6,product_ver:3.0.0,special_id:54570000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.5\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.5\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x40000},
|
||||
@ -1075,7 +1140,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:Archer C6U,product_ver:1.0.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.2\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.2\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x40000},
|
||||
@ -1111,7 +1176,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C60,product_ver:1.0.0,special_id:45550000}\r\n"
|
||||
"{product_name:Archer C60,product_ver:1.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x10000},
|
||||
@ -1145,7 +1210,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C60,product_ver:2.0.0,special_id:45550000}\r\n"
|
||||
"{product_name:Archer C60,product_ver:2.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:2.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:2.0.0\n"),
|
||||
|
||||
.partitions = {
|
||||
{"factory-boot", 0x00000, 0x1fb00},
|
||||
@ -1181,7 +1246,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C60,product_ver:3.0.0,special_id:45550000}\r\n"
|
||||
"{product_name:Archer C60,product_ver:3.0.0,special_id:55530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:3.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:3.0.0\n"),
|
||||
|
||||
.partitions = {
|
||||
{"factory-boot", 0x00000, 0x1fb00},
|
||||
@ -1217,7 +1282,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:ArcherC5,product_ver:2.0.0,special_id:55530000}\r\n"
|
||||
"{product_name:ArcherC5,product_ver:2.0.0,special_id:4A500000}\r\n", /* JP version */
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x40000},
|
||||
@ -1258,7 +1323,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C7,product_ver:4.0.0,special_id:55530000}\n"
|
||||
"{product_name:Archer C7,product_ver:4.0.0,special_id:43410000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -1303,7 +1368,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:Archer C7,product_ver:5.0.0,special_id:4B520000}\n",
|
||||
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:7.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:7.0.0\n"),
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -1346,7 +1411,7 @@ static struct device_info boards[] = {
|
||||
"product_ver:1.0.0,"
|
||||
"special_id:00000000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x40000},
|
||||
@ -1379,7 +1444,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP120(TP-LINK|UN|N300-2):1.0\r\n",
|
||||
.part_trail = 0xff,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1408,7 +1473,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP225-Outdoor(TP-Link|UN|AC1200-D):1.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
.soft_ver_compat_level = 1,
|
||||
|
||||
.partitions = {
|
||||
@ -1437,7 +1502,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP225(TP-Link|UN|AC1350-D):3.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
.soft_ver_compat_level = 1,
|
||||
|
||||
.partitions = {
|
||||
@ -1466,7 +1531,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP225-Wall(TP-Link|UN|AC1200-D):2.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
.soft_ver_compat_level = 1,
|
||||
|
||||
.partitions = {
|
||||
@ -1495,7 +1560,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP235-Wall(TP-Link|UN|AC1200-D):1.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
.soft_ver_compat_level = 1,
|
||||
|
||||
.partitions = {
|
||||
@ -1524,7 +1589,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP245(TP-LINK|UN|AC1750-D):1.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1550,7 +1615,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\r\n"
|
||||
"EAP245(TP-Link|UN|AC1750-D):3.0\r\n",
|
||||
.part_trail = PART_TRAIL_NONE,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
.soft_ver_compat_level = 1,
|
||||
|
||||
/** Firmware partition with dynamic kernel/rootfs split */
|
||||
@ -1584,7 +1649,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WA1201,product_ver:2.0.0,special_id:45550000}\n"
|
||||
"{product_name:TL-WA1201,product_ver:2.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.1 Build 20200709 rel.66244\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.1 Build 20200709 rel.66244\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1634,7 +1699,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WA850RE,product_ver:2.0.0,special_id:41550000}\n"
|
||||
"{product_name:TL-WA850RE,product_ver:2.0.0,special_id:52550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/**
|
||||
576KB were moved from file-system to os-image
|
||||
@ -1676,7 +1741,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WA855RE,product_ver:1.0.0,special_id:41550000}\n"
|
||||
"{product_name:TL-WA855RE,product_ver:1.0.0,special_id:52550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1707,7 +1772,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:TL-WPA8630P,product_ver:2.0.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"factory-uboot", 0x00000, 0x20000},
|
||||
@ -1744,7 +1809,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WPA8630P,product_ver:2.0.0,special_id:44450000}\n"
|
||||
"{product_name:TL-WPA8630P,product_ver:2.1.0,special_id:41550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"factory-uboot", 0x00000, 0x20000},
|
||||
@ -1779,7 +1844,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:TL-WPA8630P,product_ver:2.1.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"factory-uboot", 0x00000, 0x20000},
|
||||
@ -1815,7 +1880,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WR1043N,product_ver:5.0.0,special_id:45550000}\n"
|
||||
"{product_name:TL-WR1043N,product_ver:5.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.0.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.0.0\n"),
|
||||
.partitions = {
|
||||
{"factory-boot", 0x00000, 0x20000},
|
||||
{"fs-uboot", 0x20000, 0x20000},
|
||||
@ -1849,7 +1914,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:TL-WR1043ND,product_ver:4.0.0,special_id:45550000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -1882,7 +1947,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WR902AC,product_ver:1.0.0,special_id:45550000}\n"
|
||||
"{product_name:TL-WR902AC,product_ver:1.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/**
|
||||
384KB were moved from file-system to os-image
|
||||
@ -1917,7 +1982,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:TL-WR941HP,product_ver:1.0.0,special_id:00000000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1949,7 +2014,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:TL-WR942N,product_ver:1.0.0,special_id:00000000}\r\n"
|
||||
"{product_name:TL-WR942N,product_ver:1.0.0,special_id:52550000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -1996,7 +2061,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE200,product_ver:2.0.0,special_id:54570000}\n"
|
||||
"{product_name:RE200,product_ver:2.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -2040,7 +2105,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE200,product_ver:3.0.0,special_id:54570000}\n"
|
||||
"{product_name:RE200,product_ver:3.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -2084,7 +2149,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE200,product_ver:4.0.0,special_id:49440000}\n"
|
||||
"{product_name:RE200,product_ver:4.0.0,special_id:45470000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = "soft_ver:1.1.0\n",
|
||||
.soft_ver = SOFT_VER_TEXT("soft_ver:1.1.0\n"),
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -2127,7 +2192,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE220,product_ver:2.0.0,special_id:54570000}\n"
|
||||
"{product_name:RE220,product_ver:2.0.0,special_id:55530000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -2164,7 +2229,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE305,product_ver:1.0.0,special_id:41550000}\n"
|
||||
"{product_name:RE305,product_ver:1.0.0,special_id:43410000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
.partitions = {
|
||||
{"fs-uboot", 0x00000, 0x20000},
|
||||
@ -2200,7 +2265,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE350,product_ver:1.0.0,special_id:4b520000}\n"
|
||||
"{product_name:RE350,product_ver:1.0.0,special_id:4a500000}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/** We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2231,7 +2296,7 @@ static struct device_info boards[] = {
|
||||
"SupportList:\n"
|
||||
"{product_name:RE350K,product_ver:1.0.0,special_id:00000000,product_region:US}\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/** We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2270,7 +2335,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE355,product_ver:1.0.0,special_id:4B520000}\r\n"
|
||||
"{product_name:RE355,product_ver:1.0.0,special_id:55534100}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2308,7 +2373,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE450,product_ver:1.0.0,special_id:4B520000}\r\n"
|
||||
"{product_name:RE450,product_ver:1.0.0,special_id:55534100}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/** We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2347,7 +2412,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE450,product_ver:2.0.0,special_id:4B520000}\r\n"
|
||||
"{product_name:RE450,product_ver:2.0.0,special_id:42520000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2386,7 +2451,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE450,product_ver:3.0.0,special_id:4B520000}\r\n"
|
||||
"{product_name:RE450,product_ver:3.0.0,special_id:42520000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2426,7 +2491,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE455,product_ver:1.0.0,special_id:4B520000}\r\n"
|
||||
"{product_name:RE455,product_ver:1.0.0,special_id:42520000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2464,7 +2529,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE500,product_ver:1.0.0,special_id:41550000}\r\n"
|
||||
"{product_name:RE500,product_ver:1.0.0,special_id:41530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2501,7 +2566,7 @@ static struct device_info boards[] = {
|
||||
"{product_name:RE650,product_ver:1.0.0,special_id:41550000}\r\n"
|
||||
"{product_name:RE650,product_ver:1.0.0,special_id:41530000}\r\n",
|
||||
.part_trail = 0x00,
|
||||
.soft_ver = NULL,
|
||||
.soft_ver = SOFT_VER_DEFAULT,
|
||||
|
||||
/* We're using a dynamic kernel/rootfs split here */
|
||||
.partitions = {
|
||||
@ -2652,10 +2717,10 @@ static struct image_partition_entry make_soft_version(
|
||||
{
|
||||
/** If an info string is provided, use this instead of
|
||||
* the structured data, and include the null-termination */
|
||||
if (info->soft_ver) {
|
||||
uint32_t len = strlen(info->soft_ver) + 1;
|
||||
if (info->soft_ver.type == SOFT_VER_TYPE_TEXT) {
|
||||
uint32_t len = strlen(info->soft_ver.text) + 1;
|
||||
return init_meta_partition_entry("soft-version",
|
||||
info->soft_ver, len, info->part_trail);
|
||||
info->soft_ver.text, len, info->part_trail);
|
||||
}
|
||||
|
||||
time_t t;
|
||||
@ -2670,9 +2735,9 @@ static struct image_partition_entry make_soft_version(
|
||||
struct soft_version s = {
|
||||
.pad1 = 0xff,
|
||||
|
||||
.version_major = 0,
|
||||
.version_minor = 0,
|
||||
.version_patch = 0,
|
||||
.version_major = info->soft_ver.num[0],
|
||||
.version_minor = info->soft_ver.num[1],
|
||||
.version_patch = info->soft_ver.num[2],
|
||||
|
||||
.year_hi = bcd((1900+tm->tm_year)/100),
|
||||
.year_lo = bcd(tm->tm_year%100),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user