X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/2417cf679167fc778c0a77ff2e1f0ade2c797306..ec9c918aef80e00f408698eec5bd43efd00470af:/tools/firmware-utils/src/mktplinkfw.c diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 7bb877cff..cfb03f881 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -34,9 +34,11 @@ #define HEADER_VERSION_V1 0x01000000 #define HWID_TL_WR741ND_V1 0x07410001 +#define HWID_TL_WR841N_V1_5 0x08410002 #define HWID_TL_WR841ND_V3 0x08410003 #define HWID_TL_WR841ND_V5 0x08410005 #define HWID_TL_WR941ND_V2 0x09410002 +#define HWID_TL_WR941ND_V4 0x09410004 #define HWID_TL_WR1043ND_V1 0x10430001 #define MD5SUM_LEN 16 @@ -93,6 +95,7 @@ static struct file_info kernel_info; static struct file_info rootfs_info; static struct file_info boot_info; static int combined; +static int strip_padding; char md5salt_normal[MD5SUM_LEN] = { 0xdc, 0xd7, 0x3a, 0xa5, 0xc3, 0x95, 0x98, 0xfb, @@ -113,6 +116,14 @@ static struct board_info boards[] = { .kernel_la = 0x80060000, .kernel_ep = 0x80060000, .rootfs_ofs = 0x140000, + }, { + .id = "TL-WR841Nv1.5", + .hw_id = HWID_TL_WR841N_V1_5, + .hw_rev = 2, + .fw_max_len = 0x3c0000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, }, { .id = "TL-WR841NDv3", .hw_id = HWID_TL_WR841ND_V3, @@ -137,6 +148,14 @@ static struct board_info boards[] = { .kernel_la = 0x80060000, .kernel_ep = 0x80060000, .rootfs_ofs = 0x140000, + }, { + .id = "TL-WR941NDv4", + .hw_id = HWID_TL_WR941ND_V4, + .hw_rev = 1, + .fw_max_len = 0x3c0000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, }, { .id = "TL-WR1043NDv1", .hw_id = HWID_TL_WR1043ND_V1, @@ -200,7 +219,9 @@ static void usage(int status) " -k read kernel image from the file \n" " -r read rootfs image from the file \n" " -o write output to the file \n" -" -v set image version to \n" +" -s strip padding from the end of the image\n" +" -N set image vendor to \n" +" -V set image version to \n" " -h show this screen\n" ); @@ -388,6 +409,7 @@ static int build_fw(void) char *buf; char *p; int ret = EXIT_FAILURE; + int writelen = 0; buflen = board->fw_max_len; @@ -403,16 +425,22 @@ static int build_fw(void) if (ret) goto out_free_buf; + writelen = kernel_info.file_size; + if (!combined) { p = buf + board->rootfs_ofs; ret = read_to_buf(&rootfs_info, p); if (ret) goto out_free_buf; + + writelen = board->rootfs_ofs + rootfs_info.file_size; } - fill_header(buf, buflen); + if (!strip_padding) + writelen = buflen; - ret = write_fw(buf, buflen); + fill_header(buf, writelen); + ret = write_fw(buf, writelen); if (ret) goto out_free_buf; @@ -436,7 +464,7 @@ int main(int argc, char *argv[]) while ( 1 ) { int c; - c = getopt(argc, argv, "B:V:N:ck:r:o:v:h:"); + c = getopt(argc, argv, "B:V:N:ck:r:o:hs"); if (c == -1) break; @@ -462,8 +490,8 @@ int main(int argc, char *argv[]) case 'o': ofname = optarg; break; - case 'v': - version = optarg; + case 's': + strip_padding = 1; break; case 'h': usage(EXIT_SUCCESS);