2 Copyright (c) 2014, Matthias Schiffer <mschiffer@universe-factory.net>
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
8 1. Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright notice,
11 this list of conditions and the following disclaimer in the documentation
12 and/or other materials provided with the distribution.
14 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
18 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 Image generation tool for the TP-LINK SafeLoader as seen on
31 TP-LINK Pharos devices (CPE210/220/510/520)
45 #include <arpa/inet.h>
47 #include <sys/types.h>
54 #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); })
57 #define MAX_PARTITIONS 32
59 /** An image partition table entry */
60 struct image_partition_entry
{
66 /** A flash partition table entry */
67 struct flash_partition_entry
{
73 /** Firmware layout description */
77 const char *support_list
;
80 uint32_t soft_ver_compat_level
;
81 struct flash_partition_entry partitions
[MAX_PARTITIONS
+1];
82 const char *first_sysupgrade_partition
;
83 const char *last_sysupgrade_partition
;
86 /** The content of the soft-version structure */
87 struct __attribute__((__packed__
)) soft_version
{
91 uint8_t version_major
;
92 uint8_t version_minor
;
93 uint8_t version_patch
;
102 static const uint8_t jffs2_eof_mark
[4] = {0xde, 0xad, 0xc0, 0xde};
106 Salt for the MD5 hash
108 Fortunately, TP-LINK seems to use the same salt for most devices which use
109 the new image format.
111 static const uint8_t md5_salt
[16] = {
112 0x7a, 0x2b, 0x15, 0xed,
113 0x9b, 0x98, 0x59, 0x6d,
114 0xe5, 0x04, 0xab, 0x44,
115 0xac, 0x2a, 0x9f, 0x4e,
119 /** Firmware layout table */
120 static struct device_info boards
[] = {
121 /** Firmware layout for the CPE210/220 V1 */
124 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
127 "CPE210(TP-LINK|UN|N300-2):1.0\r\n"
128 "CPE210(TP-LINK|UN|N300-2):1.1\r\n"
129 "CPE210(TP-LINK|US|N300-2):1.1\r\n"
130 "CPE210(TP-LINK|EU|N300-2):1.1\r\n"
131 "CPE220(TP-LINK|UN|N300-2):1.1\r\n"
132 "CPE220(TP-LINK|US|N300-2):1.1\r\n"
133 "CPE220(TP-LINK|EU|N300-2):1.1\r\n",
134 .support_trail
= '\xff',
138 {"fs-uboot", 0x00000, 0x20000},
139 {"partition-table", 0x20000, 0x02000},
140 {"default-mac", 0x30000, 0x00020},
141 {"product-info", 0x31100, 0x00100},
142 {"signature", 0x32000, 0x00400},
143 {"os-image", 0x40000, 0x300000},
144 {"file-system", 0x340000, 0x470000},
145 {"soft-version", 0x7b0000, 0x00100},
146 {"support-list", 0x7b1000, 0x00400},
147 {"user-config", 0x7c0000, 0x10000},
148 {"default-config", 0x7d0000, 0x10000},
149 {"log", 0x7e0000, 0x10000},
150 {"radio", 0x7f0000, 0x10000},
154 .first_sysupgrade_partition
= "os-image",
155 .last_sysupgrade_partition
= "support-list",
158 /** Firmware layout for the CPE210 V2 */
161 .vendor
= "CPE210(TP-LINK|UN|N300-2|00000000):2.0\r\n",
164 "CPE210(TP-LINK|EU|N300-2|00000000):2.0\r\n"
165 "CPE210(TP-LINK|EU|N300-2|45550000):2.0\r\n"
166 "CPE210(TP-LINK|EU|N300-2|55530000):2.0\r\n"
167 "CPE210(TP-LINK|UN|N300-2|00000000):2.0\r\n"
168 "CPE210(TP-LINK|UN|N300-2|45550000):2.0\r\n"
169 "CPE210(TP-LINK|UN|N300-2|55530000):2.0\r\n"
170 "CPE210(TP-LINK|US|N300-2|55530000):2.0\r\n"
171 "CPE210(TP-LINK|UN|N300-2):2.0\r\n"
172 "CPE210(TP-LINK|EU|N300-2):2.0\r\n"
173 "CPE210(TP-LINK|US|N300-2):2.0\r\n",
174 .support_trail
= '\xff',
178 {"fs-uboot", 0x00000, 0x20000},
179 {"partition-table", 0x20000, 0x02000},
180 {"default-mac", 0x30000, 0x00020},
181 {"product-info", 0x31100, 0x00100},
182 {"device-info", 0x31400, 0x00400},
183 {"signature", 0x32000, 0x00400},
184 {"device-id", 0x33000, 0x00100},
185 {"firmware", 0x40000, 0x770000},
186 {"soft-version", 0x7b0000, 0x00100},
187 {"support-list", 0x7b1000, 0x01000},
188 {"user-config", 0x7c0000, 0x10000},
189 {"default-config", 0x7d0000, 0x10000},
190 {"log", 0x7e0000, 0x10000},
191 {"radio", 0x7f0000, 0x10000},
195 .first_sysupgrade_partition
= "os-image",
196 .last_sysupgrade_partition
= "support-list",
199 /** Firmware layout for the CPE210 V3 */
202 .vendor
= "CPE210(TP-LINK|UN|N300-2|00000000):3.0\r\n",
205 "CPE210(TP-LINK|EU|N300-2|45550000):3.0\r\n"
206 "CPE210(TP-LINK|UN|N300-2|00000000):3.0\r\n"
207 "CPE210(TP-LINK|US|N300-2|55530000):3.0\r\n"
208 "CPE210(TP-LINK|UN|N300-2):3.0\r\n"
209 "CPE210(TP-LINK|EU|N300-2):3.0\r\n"
210 "CPE210(TP-LINK|EU|N300-2|45550000):3.1\r\n"
211 "CPE210(TP-LINK|UN|N300-2|00000000):3.1\r\n"
212 "CPE210(TP-LINK|US|N300-2|55530000):3.1\r\n"
213 "CPE210(TP-LINK|EU|N300-2|45550000):3.20\r\n"
214 "CPE210(TP-LINK|UN|N300-2|00000000):3.20\r\n"
215 "CPE210(TP-LINK|US|N300-2|55530000):3.20\r\n",
216 .support_trail
= '\xff',
220 {"fs-uboot", 0x00000, 0x20000},
221 {"partition-table", 0x20000, 0x01000},
222 {"default-mac", 0x30000, 0x00020},
223 {"product-info", 0x31100, 0x00100},
224 {"device-info", 0x31400, 0x00400},
225 {"signature", 0x32000, 0x00400},
226 {"device-id", 0x33000, 0x00100},
227 {"firmware", 0x40000, 0x770000},
228 {"soft-version", 0x7b0000, 0x00100},
229 {"support-list", 0x7b1000, 0x01000},
230 {"user-config", 0x7c0000, 0x10000},
231 {"default-config", 0x7d0000, 0x10000},
232 {"log", 0x7e0000, 0x10000},
233 {"radio", 0x7f0000, 0x10000},
237 .first_sysupgrade_partition
= "os-image",
238 .last_sysupgrade_partition
= "support-list",
241 /** Firmware layout for the CPE220 V2 */
244 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
247 "CPE220(TP-LINK|EU|N300-2|00000000):2.0\r\n"
248 "CPE220(TP-LINK|EU|N300-2|45550000):2.0\r\n"
249 "CPE220(TP-LINK|EU|N300-2|55530000):2.0\r\n"
250 "CPE220(TP-LINK|UN|N300-2|00000000):2.0\r\n"
251 "CPE220(TP-LINK|UN|N300-2|45550000):2.0\r\n"
252 "CPE220(TP-LINK|UN|N300-2|55530000):2.0\r\n"
253 "CPE220(TP-LINK|US|N300-2|55530000):2.0\r\n"
254 "CPE220(TP-LINK|UN|N300-2):2.0\r\n"
255 "CPE220(TP-LINK|EU|N300-2):2.0\r\n"
256 "CPE220(TP-LINK|US|N300-2):2.0\r\n",
257 .support_trail
= '\xff',
261 {"fs-uboot", 0x00000, 0x20000},
262 {"partition-table", 0x20000, 0x02000},
263 {"default-mac", 0x30000, 0x00020},
264 {"product-info", 0x31100, 0x00100},
265 {"signature", 0x32000, 0x00400},
266 {"os-image", 0x40000, 0x300000},
267 {"file-system", 0x340000, 0x470000},
268 {"soft-version", 0x7b0000, 0x00100},
269 {"support-list", 0x7b1000, 0x00400},
270 {"user-config", 0x7c0000, 0x10000},
271 {"default-config", 0x7d0000, 0x10000},
272 {"log", 0x7e0000, 0x10000},
273 {"radio", 0x7f0000, 0x10000},
277 .first_sysupgrade_partition
= "os-image",
278 .last_sysupgrade_partition
= "support-list",
281 /** Firmware layout for the CPE220 V3 */
284 .vendor
= "CPE220(TP-LINK|UN|N300-2|00000000):3.0\r\n",
287 "CPE220(TP-LINK|EU|N300-2|00000000):3.0\r\n"
288 "CPE220(TP-LINK|EU|N300-2|45550000):3.0\r\n"
289 "CPE220(TP-LINK|EU|N300-2|55530000):3.0\r\n"
290 "CPE220(TP-LINK|UN|N300-2|00000000):3.0\r\n"
291 "CPE220(TP-LINK|UN|N300-2|45550000):3.0\r\n"
292 "CPE220(TP-LINK|UN|N300-2|55530000):3.0\r\n"
293 "CPE220(TP-LINK|US|N300-2|55530000):3.0\r\n"
294 "CPE220(TP-LINK|UN|N300-2):3.0\r\n"
295 "CPE220(TP-LINK|EU|N300-2):3.0\r\n"
296 "CPE220(TP-LINK|US|N300-2):3.0\r\n",
297 .support_trail
= '\xff',
301 {"fs-uboot", 0x00000, 0x20000},
302 {"partition-table", 0x20000, 0x02000},
303 {"default-mac", 0x30000, 0x00020},
304 {"product-info", 0x31100, 0x00100},
305 {"device-info", 0x31400, 0x00400},
306 {"signature", 0x32000, 0x00400},
307 {"device-id", 0x33000, 0x00100},
308 {"firmware", 0x40000, 0x770000},
309 {"soft-version", 0x7b0000, 0x00100},
310 {"support-list", 0x7b1000, 0x01000},
311 {"user-config", 0x7c0000, 0x10000},
312 {"default-config", 0x7d0000, 0x10000},
313 {"log", 0x7e0000, 0x10000},
314 {"radio", 0x7f0000, 0x10000},
318 .first_sysupgrade_partition
= "os-image",
319 .last_sysupgrade_partition
= "support-list",
322 /** Firmware layout for the CPE510/520 V1 */
325 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
328 "CPE510(TP-LINK|UN|N300-5):1.0\r\n"
329 "CPE510(TP-LINK|UN|N300-5):1.1\r\n"
330 "CPE510(TP-LINK|UN|N300-5):1.1\r\n"
331 "CPE510(TP-LINK|US|N300-5):1.1\r\n"
332 "CPE510(TP-LINK|EU|N300-5):1.1\r\n"
333 "CPE520(TP-LINK|UN|N300-5):1.1\r\n"
334 "CPE520(TP-LINK|US|N300-5):1.1\r\n"
335 "CPE520(TP-LINK|EU|N300-5):1.1\r\n",
336 .support_trail
= '\xff',
340 {"fs-uboot", 0x00000, 0x20000},
341 {"partition-table", 0x20000, 0x02000},
342 {"default-mac", 0x30000, 0x00020},
343 {"product-info", 0x31100, 0x00100},
344 {"signature", 0x32000, 0x00400},
345 {"os-image", 0x40000, 0x300000},
346 {"file-system", 0x340000, 0x470000},
347 {"soft-version", 0x7b0000, 0x00100},
348 {"support-list", 0x7b1000, 0x00400},
349 {"user-config", 0x7c0000, 0x10000},
350 {"default-config", 0x7d0000, 0x10000},
351 {"log", 0x7e0000, 0x10000},
352 {"radio", 0x7f0000, 0x10000},
356 .first_sysupgrade_partition
= "os-image",
357 .last_sysupgrade_partition
= "support-list",
360 /** Firmware layout for the CPE510 V2 */
363 .vendor
= "CPE510(TP-LINK|UN|N300-5):2.0\r\n",
366 "CPE510(TP-LINK|EU|N300-5|00000000):2.0\r\n"
367 "CPE510(TP-LINK|EU|N300-5|45550000):2.0\r\n"
368 "CPE510(TP-LINK|EU|N300-5|55530000):2.0\r\n"
369 "CPE510(TP-LINK|UN|N300-5|00000000):2.0\r\n"
370 "CPE510(TP-LINK|UN|N300-5|45550000):2.0\r\n"
371 "CPE510(TP-LINK|UN|N300-5|55530000):2.0\r\n"
372 "CPE510(TP-LINK|US|N300-5|00000000):2.0\r\n"
373 "CPE510(TP-LINK|US|N300-5|45550000):2.0\r\n"
374 "CPE510(TP-LINK|US|N300-5|55530000):2.0\r\n"
375 "CPE510(TP-LINK|UN|N300-5):2.0\r\n"
376 "CPE510(TP-LINK|EU|N300-5):2.0\r\n"
377 "CPE510(TP-LINK|US|N300-5):2.0\r\n",
378 .support_trail
= '\xff',
382 {"fs-uboot", 0x00000, 0x20000},
383 {"partition-table", 0x20000, 0x02000},
384 {"default-mac", 0x30000, 0x00020},
385 {"product-info", 0x31100, 0x00100},
386 {"signature", 0x32000, 0x00400},
387 {"os-image", 0x40000, 0x300000},
388 {"file-system", 0x340000, 0x470000},
389 {"soft-version", 0x7b0000, 0x00100},
390 {"support-list", 0x7b1000, 0x00400},
391 {"user-config", 0x7c0000, 0x10000},
392 {"default-config", 0x7d0000, 0x10000},
393 {"log", 0x7e0000, 0x10000},
394 {"radio", 0x7f0000, 0x10000},
398 .first_sysupgrade_partition
= "os-image",
399 .last_sysupgrade_partition
= "support-list",
402 /** Firmware layout for the CPE510 V3 */
405 .vendor
= "CPE510(TP-LINK|UN|N300-5):3.0\r\n",
408 "CPE510(TP-LINK|EU|N300-5|00000000):3.0\r\n"
409 "CPE510(TP-LINK|EU|N300-5|45550000):3.0\r\n"
410 "CPE510(TP-LINK|EU|N300-5|55530000):3.0\r\n"
411 "CPE510(TP-LINK|UN|N300-5|00000000):3.0\r\n"
412 "CPE510(TP-LINK|UN|N300-5|45550000):3.0\r\n"
413 "CPE510(TP-LINK|UN|N300-5|55530000):3.0\r\n"
414 "CPE510(TP-LINK|US|N300-5|00000000):3.0\r\n"
415 "CPE510(TP-LINK|US|N300-5|45550000):3.0\r\n"
416 "CPE510(TP-LINK|US|N300-5|55530000):3.0\r\n"
417 "CPE510(TP-LINK|UN|N300-5):3.0\r\n"
418 "CPE510(TP-LINK|EU|N300-5):3.0\r\n"
419 "CPE510(TP-LINK|US|N300-5):3.0\r\n",
420 .support_trail
= '\xff',
424 {"fs-uboot", 0x00000, 0x20000},
425 {"partition-table", 0x20000, 0x02000},
426 {"default-mac", 0x30000, 0x00020},
427 {"product-info", 0x31100, 0x00100},
428 {"signature", 0x32000, 0x00400},
429 {"os-image", 0x40000, 0x300000},
430 {"file-system", 0x340000, 0x470000},
431 {"soft-version", 0x7b0000, 0x00100},
432 {"support-list", 0x7b1000, 0x00400},
433 {"user-config", 0x7c0000, 0x10000},
434 {"default-config", 0x7d0000, 0x10000},
435 {"log", 0x7e0000, 0x10000},
436 {"radio", 0x7f0000, 0x10000},
440 .first_sysupgrade_partition
= "os-image",
441 .last_sysupgrade_partition
= "support-list",
444 /** Firmware layout for the CPE610V1 */
447 .vendor
= "CPE610(TP-LINK|UN|N300-5|00000000):1.0\r\n",
450 "CPE610(TP-LINK|EU|N300-5|00000000):1.0\r\n"
451 "CPE610(TP-LINK|EU|N300-5|45550000):1.0\r\n"
452 "CPE610(TP-LINK|EU|N300-5|55530000):1.0\r\n"
453 "CPE610(TP-LINK|UN|N300-5|00000000):1.0\r\n"
454 "CPE610(TP-LINK|UN|N300-5|45550000):1.0\r\n"
455 "CPE610(TP-LINK|UN|N300-5|55530000):1.0\r\n"
456 "CPE610(TP-LINK|US|N300-5|55530000):1.0\r\n"
457 "CPE610(TP-LINK|UN|N300-5):1.0\r\n"
458 "CPE610(TP-LINK|EU|N300-5):1.0\r\n"
459 "CPE610(TP-LINK|US|N300-5):1.0\r\n",
460 .support_trail
= '\xff',
464 {"fs-uboot", 0x00000, 0x20000},
465 {"partition-table", 0x20000, 0x02000},
466 {"default-mac", 0x30000, 0x00020},
467 {"product-info", 0x31100, 0x00100},
468 {"signature", 0x32000, 0x00400},
469 {"os-image", 0x40000, 0x300000},
470 {"file-system", 0x340000, 0x470000},
471 {"soft-version", 0x7b0000, 0x00100},
472 {"support-list", 0x7b1000, 0x00400},
473 {"user-config", 0x7c0000, 0x10000},
474 {"default-config", 0x7d0000, 0x10000},
475 {"log", 0x7e0000, 0x10000},
476 {"radio", 0x7f0000, 0x10000},
480 .first_sysupgrade_partition
= "os-image",
481 .last_sysupgrade_partition
= "support-list",
484 /** Firmware layout for the CPE610V2 */
487 .vendor
= "CPE610(TP-LINK|UN|N300-5|00000000):2.0\r\n",
490 "CPE610(TP-LINK|EU|N300-5|00000000):2.0\r\n"
491 "CPE610(TP-LINK|EU|N300-5|45550000):2.0\r\n"
492 "CPE610(TP-LINK|EU|N300-5|55530000):2.0\r\n"
493 "CPE610(TP-LINK|UN|N300-5|00000000):2.0\r\n"
494 "CPE610(TP-LINK|UN|N300-5|45550000):2.0\r\n"
495 "CPE610(TP-LINK|UN|N300-5|55530000):2.0\r\n"
496 "CPE610(TP-LINK|US|N300-5|55530000):2.0\r\n"
497 "CPE610(TP-LINK|UN|N300-5):2.0\r\n"
498 "CPE610(TP-LINK|EU|N300-5):2.0\r\n"
499 "CPE610(TP-LINK|US|N300-5):2.0\r\n",
500 .support_trail
= '\xff',
504 {"fs-uboot", 0x00000, 0x20000},
505 {"partition-table", 0x20000, 0x02000},
506 {"default-mac", 0x30000, 0x00020},
507 {"product-info", 0x31100, 0x00100},
508 {"signature", 0x32000, 0x00400},
509 {"os-image", 0x40000, 0x300000},
510 {"file-system", 0x340000, 0x470000},
511 {"soft-version", 0x7b0000, 0x00100},
512 {"support-list", 0x7b1000, 0x00400},
513 {"user-config", 0x7c0000, 0x10000},
514 {"default-config", 0x7d0000, 0x10000},
515 {"log", 0x7e0000, 0x10000},
516 {"radio", 0x7f0000, 0x10000},
520 .first_sysupgrade_partition
= "os-image",
521 .last_sysupgrade_partition
= "support-list",
526 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
529 "WBS210(TP-LINK|UN|N300-2):1.20\r\n"
530 "WBS210(TP-LINK|US|N300-2):1.20\r\n"
531 "WBS210(TP-LINK|EU|N300-2):1.20\r\n",
532 .support_trail
= '\xff',
536 {"fs-uboot", 0x00000, 0x20000},
537 {"partition-table", 0x20000, 0x02000},
538 {"default-mac", 0x30000, 0x00020},
539 {"product-info", 0x31100, 0x00100},
540 {"signature", 0x32000, 0x00400},
541 {"os-image", 0x40000, 0x300000},
542 {"file-system", 0x340000, 0x470000},
543 {"soft-version", 0x7b0000, 0x00100},
544 {"support-list", 0x7b1000, 0x00400},
545 {"user-config", 0x7c0000, 0x10000},
546 {"default-config", 0x7d0000, 0x10000},
547 {"log", 0x7e0000, 0x10000},
548 {"radio", 0x7f0000, 0x10000},
552 .first_sysupgrade_partition
= "os-image",
553 .last_sysupgrade_partition
= "support-list",
558 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
561 "WBS210(TP-LINK|UN|N300-2|00000000):2.0\r\n"
562 "WBS210(TP-LINK|US|N300-2|55530000):2.0\r\n"
563 "WBS210(TP-LINK|EU|N300-2|45550000):2.0\r\n",
564 .support_trail
= '\xff',
568 {"fs-uboot", 0x00000, 0x20000},
569 {"partition-table", 0x20000, 0x02000},
570 {"default-mac", 0x30000, 0x00020},
571 {"product-info", 0x31100, 0x00100},
572 {"signature", 0x32000, 0x00400},
573 {"os-image", 0x40000, 0x300000},
574 {"file-system", 0x340000, 0x470000},
575 {"soft-version", 0x7b0000, 0x00100},
576 {"support-list", 0x7b1000, 0x00400},
577 {"user-config", 0x7c0000, 0x10000},
578 {"default-config", 0x7d0000, 0x10000},
579 {"log", 0x7e0000, 0x10000},
580 {"radio", 0x7f0000, 0x10000},
584 .first_sysupgrade_partition
= "os-image",
585 .last_sysupgrade_partition
= "support-list",
590 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
593 "WBS510(TP-LINK|UN|N300-5):1.20\r\n"
594 "WBS510(TP-LINK|US|N300-5):1.20\r\n"
595 "WBS510(TP-LINK|EU|N300-5):1.20\r\n"
596 "WBS510(TP-LINK|CA|N300-5):1.20\r\n",
597 .support_trail
= '\xff',
601 {"fs-uboot", 0x00000, 0x20000},
602 {"partition-table", 0x20000, 0x02000},
603 {"default-mac", 0x30000, 0x00020},
604 {"product-info", 0x31100, 0x00100},
605 {"signature", 0x32000, 0x00400},
606 {"os-image", 0x40000, 0x300000},
607 {"file-system", 0x340000, 0x470000},
608 {"soft-version", 0x7b0000, 0x00100},
609 {"support-list", 0x7b1000, 0x00400},
610 {"user-config", 0x7c0000, 0x10000},
611 {"default-config", 0x7d0000, 0x10000},
612 {"log", 0x7e0000, 0x10000},
613 {"radio", 0x7f0000, 0x10000},
617 .first_sysupgrade_partition
= "os-image",
618 .last_sysupgrade_partition
= "support-list",
623 .vendor
= "CPE510(TP-LINK|UN|N300-5):1.0\r\n",
626 "WBS510(TP-LINK|UN|N300-5|00000000):2.0\r\n"
627 "WBS510(TP-LINK|US|N300-5|55530000):2.0\r\n"
628 "WBS510(TP-LINK|EU|N300-5|45550000):2.0\r\n"
629 "WBS510(TP-LINK|CA|N300-5|43410000):2.0\r\n",
630 .support_trail
= '\xff',
634 {"fs-uboot", 0x00000, 0x20000},
635 {"partition-table", 0x20000, 0x02000},
636 {"default-mac", 0x30000, 0x00020},
637 {"product-info", 0x31100, 0x00100},
638 {"signature", 0x32000, 0x00400},
639 {"os-image", 0x40000, 0x300000},
640 {"file-system", 0x340000, 0x470000},
641 {"soft-version", 0x7b0000, 0x00100},
642 {"support-list", 0x7b1000, 0x00400},
643 {"user-config", 0x7c0000, 0x10000},
644 {"default-config", 0x7d0000, 0x10000},
645 {"log", 0x7e0000, 0x10000},
646 {"radio", 0x7f0000, 0x10000},
650 .first_sysupgrade_partition
= "os-image",
651 .last_sysupgrade_partition
= "support-list",
654 /** Firmware layout for the C2600 */
660 "{product_name:Archer C2600,product_ver:1.0.0,special_id:00000000}\r\n",
661 .support_trail
= '\x00',
665 We use a bigger os-image partition than the stock images (and thus
666 smaller file-system), as our kernel doesn't fit in the stock firmware's
667 2 MB os-image since kernel 4.14.
670 {"SBL1", 0x00000, 0x20000},
671 {"MIBIB", 0x20000, 0x20000},
672 {"SBL2", 0x40000, 0x20000},
673 {"SBL3", 0x60000, 0x30000},
674 {"DDRCONFIG", 0x90000, 0x10000},
675 {"SSD", 0xa0000, 0x10000},
676 {"TZ", 0xb0000, 0x30000},
677 {"RPM", 0xe0000, 0x20000},
678 {"fs-uboot", 0x100000, 0x70000},
679 {"uboot-env", 0x170000, 0x40000},
680 {"radio", 0x1b0000, 0x40000},
681 {"os-image", 0x1f0000, 0x400000}, /* Stock: base 0x1f0000 size 0x200000 */
682 {"file-system", 0x5f0000, 0x1900000}, /* Stock: base 0x3f0000 size 0x1b00000 */
683 {"default-mac", 0x1ef0000, 0x00200},
684 {"pin", 0x1ef0200, 0x00200},
685 {"product-info", 0x1ef0400, 0x0fc00},
686 {"partition-table", 0x1f00000, 0x10000},
687 {"soft-version", 0x1f10000, 0x10000},
688 {"support-list", 0x1f20000, 0x10000},
689 {"profile", 0x1f30000, 0x10000},
690 {"default-config", 0x1f40000, 0x10000},
691 {"user-config", 0x1f50000, 0x40000},
692 {"qos-db", 0x1f90000, 0x40000},
693 {"usb-config", 0x1fd0000, 0x10000},
694 {"log", 0x1fe0000, 0x20000},
698 .first_sysupgrade_partition
= "os-image",
699 .last_sysupgrade_partition
= "file-system"
702 /** Firmware layout for the A7-V5 */
704 .id
= "ARCHER-A7-V5",
707 "{product_name:Archer A7,product_ver:5.0.0,special_id:45550000}\n"
708 "{product_name:Archer A7,product_ver:5.0.0,special_id:55530000}\n"
709 "{product_name:Archer A7,product_ver:5.0.0,special_id:43410000}\n"
710 "{product_name:Archer A7,product_ver:5.0.0,special_id:4A500000}\n"
711 "{product_name:Archer A7,product_ver:5.0.0,special_id:54570000}\n",
712 .support_trail
= '\x00',
713 .soft_ver
= "soft_ver:1.0.0\n",
715 /* We're using a dynamic kernel/rootfs split here */
717 {"factory-boot", 0x00000, 0x20000},
718 {"fs-uboot", 0x20000, 0x20000},
719 {"firmware", 0x40000, 0xec0000}, /* Stock: name os-image base 0x40000 size 0x120000 */
720 /* Stock: name file-system base 0x160000 size 0xda0000 */
721 {"default-mac", 0xf40000, 0x00200},
722 {"pin", 0xf40200, 0x00200},
723 {"device-id", 0xf40400, 0x00100},
724 {"product-info", 0xf40500, 0x0fb00},
725 {"soft-version", 0xf50000, 0x00100},
726 {"extra-para", 0xf51000, 0x01000},
727 {"support-list", 0xf52000, 0x0a000},
728 {"profile", 0xf5c000, 0x04000},
729 {"default-config", 0xf60000, 0x10000},
730 {"user-config", 0xf70000, 0x40000},
731 {"certificate", 0xfb0000, 0x10000},
732 {"partition-table", 0xfc0000, 0x10000},
733 {"log", 0xfd0000, 0x20000},
734 {"radio", 0xff0000, 0x10000},
738 .first_sysupgrade_partition
= "os-image",
739 .last_sysupgrade_partition
= "file-system",
742 /** Firmware layout for the C2v3 */
744 .id
= "ARCHER-C2-V3",
747 "{product_name:ArcherC2,product_ver:3.0.0,special_id:00000000}\n"
748 "{product_name:ArcherC2,product_ver:3.0.0,special_id:55530000}\n"
749 "{product_name:ArcherC2,product_ver:3.0.0,special_id:45550000}\n",
750 .support_trail
= '\x00',
751 .soft_ver
= "soft_ver:3.0.1\n",
753 /** We're using a dynamic kernel/rootfs split here */
756 {"factory-boot", 0x00000, 0x20000},
757 {"fs-uboot", 0x20000, 0x10000},
758 {"firmware", 0x30000, 0x7a0000},
759 {"user-config", 0x7d0000, 0x04000},
760 {"default-mac", 0x7e0000, 0x00100},
761 {"device-id", 0x7e0100, 0x00100},
762 {"extra-para", 0x7e0200, 0x00100},
763 {"pin", 0x7e0300, 0x00100},
764 {"support-list", 0x7e0400, 0x00400},
765 {"soft-version", 0x7e0800, 0x00400},
766 {"product-info", 0x7e0c00, 0x01400},
767 {"partition-table", 0x7e2000, 0x01000},
768 {"profile", 0x7e3000, 0x01000},
769 {"default-config", 0x7e4000, 0x04000},
770 {"merge-config", 0x7ec000, 0x02000},
771 {"qos-db", 0x7ee000, 0x02000},
772 {"radio", 0x7f0000, 0x10000},
776 .first_sysupgrade_partition
= "os-image",
777 .last_sysupgrade_partition
= "file-system",
780 /** Firmware layout for the C25v1 */
782 .id
= "ARCHER-C25-V1",
785 "{product_name:ArcherC25,product_ver:1.0.0,special_id:00000000}\n"
786 "{product_name:ArcherC25,product_ver:1.0.0,special_id:55530000}\n"
787 "{product_name:ArcherC25,product_ver:1.0.0,special_id:45550000}\n",
788 .support_trail
= '\x00',
789 .soft_ver
= "soft_ver:1.0.0\n",
791 /* We're using a dynamic kernel/rootfs split here */
793 {"factory-boot", 0x00000, 0x20000},
794 {"fs-uboot", 0x20000, 0x10000},
795 {"firmware", 0x30000, 0x7a0000}, /* Stock: name os-image base 0x30000 size 0x100000 */
796 /* Stock: name file-system base 0x130000 size 0x6a0000 */
797 {"user-config", 0x7d0000, 0x04000},
798 {"default-mac", 0x7e0000, 0x00100},
799 {"device-id", 0x7e0100, 0x00100},
800 {"extra-para", 0x7e0200, 0x00100},
801 {"pin", 0x7e0300, 0x00100},
802 {"support-list", 0x7e0400, 0x00400},
803 {"soft-version", 0x7e0800, 0x00400},
804 {"product-info", 0x7e0c00, 0x01400},
805 {"partition-table", 0x7e2000, 0x01000},
806 {"profile", 0x7e3000, 0x01000},
807 {"default-config", 0x7e4000, 0x04000},
808 {"merge-config", 0x7ec000, 0x02000},
809 {"qos-db", 0x7ee000, 0x02000},
810 {"radio", 0x7f0000, 0x10000},
814 .first_sysupgrade_partition
= "os-image",
815 .last_sysupgrade_partition
= "file-system",
818 /** Firmware layout for the C58v1 */
820 .id
= "ARCHER-C58-V1",
824 "{product_name:Archer C58,product_ver:1.0.0,special_id:00000000}\r\n"
825 "{product_name:Archer C58,product_ver:1.0.0,special_id:45550000}\r\n"
826 "{product_name:Archer C58,product_ver:1.0.0,special_id:55530000}\r\n",
827 .support_trail
= '\x00',
828 .soft_ver
= "soft_ver:1.0.0\n",
831 {"fs-uboot", 0x00000, 0x10000},
832 {"default-mac", 0x10000, 0x00200},
833 {"pin", 0x10200, 0x00200},
834 {"product-info", 0x10400, 0x00100},
835 {"partition-table", 0x10500, 0x00800},
836 {"soft-version", 0x11300, 0x00200},
837 {"support-list", 0x11500, 0x00100},
838 {"device-id", 0x11600, 0x00100},
839 {"profile", 0x11700, 0x03900},
840 {"default-config", 0x15000, 0x04000},
841 {"user-config", 0x19000, 0x04000},
842 {"firmware", 0x20000, 0x7c8000},
843 {"certyficate", 0x7e8000, 0x08000},
844 {"radio", 0x7f0000, 0x10000},
848 .first_sysupgrade_partition
= "os-image",
849 .last_sysupgrade_partition
= "file-system",
852 /** Firmware layout for the C59v1 */
854 .id
= "ARCHER-C59-V1",
858 "{product_name:Archer C59,product_ver:1.0.0,special_id:00000000}\r\n"
859 "{product_name:Archer C59,product_ver:1.0.0,special_id:45550000}\r\n"
860 "{product_name:Archer C59,product_ver:1.0.0,special_id:52550000}\r\n"
861 "{product_name:Archer C59,product_ver:1.0.0,special_id:55530000}\r\n",
862 .support_trail
= '\x00',
863 .soft_ver
= "soft_ver:1.0.0\n",
865 /* We're using a dynamic kernel/rootfs split here */
867 {"fs-uboot", 0x00000, 0x10000},
868 {"default-mac", 0x10000, 0x00200},
869 {"pin", 0x10200, 0x00200},
870 {"device-id", 0x10400, 0x00100},
871 {"product-info", 0x10500, 0x0fb00},
872 {"firmware", 0x20000, 0xe30000},
873 {"partition-table", 0xe50000, 0x10000},
874 {"soft-version", 0xe60000, 0x10000},
875 {"support-list", 0xe70000, 0x10000},
876 {"profile", 0xe80000, 0x10000},
877 {"default-config", 0xe90000, 0x10000},
878 {"user-config", 0xea0000, 0x40000},
879 {"usb-config", 0xee0000, 0x10000},
880 {"certificate", 0xef0000, 0x10000},
881 {"qos-db", 0xf00000, 0x40000},
882 {"log", 0xfe0000, 0x10000},
883 {"radio", 0xff0000, 0x10000},
887 .first_sysupgrade_partition
= "os-image",
888 .last_sysupgrade_partition
= "file-system",
891 /** Firmware layout for the C59v2 */
893 .id
= "ARCHER-C59-V2",
897 "{product_name:Archer C59,product_ver:2.0.0,special_id:00000000}\r\n"
898 "{product_name:Archer C59,product_ver:2.0.0,special_id:45550000}\r\n"
899 "{product_name:Archer C59,product_ver:2.0.0,special_id:55530000}\r\n",
900 .support_trail
= '\x00',
901 .soft_ver
= "soft_ver:2.0.0 Build 20161206 rel.7303\n",
903 /** We're using a dynamic kernel/rootfs split here */
905 {"factory-boot", 0x00000, 0x20000},
906 {"fs-uboot", 0x20000, 0x10000},
907 {"default-mac", 0x30000, 0x00200},
908 {"pin", 0x30200, 0x00200},
909 {"device-id", 0x30400, 0x00100},
910 {"product-info", 0x30500, 0x0fb00},
911 {"firmware", 0x40000, 0xe10000},
912 {"partition-table", 0xe50000, 0x10000},
913 {"soft-version", 0xe60000, 0x10000},
914 {"support-list", 0xe70000, 0x10000},
915 {"profile", 0xe80000, 0x10000},
916 {"default-config", 0xe90000, 0x10000},
917 {"user-config", 0xea0000, 0x40000},
918 {"usb-config", 0xee0000, 0x10000},
919 {"certificate", 0xef0000, 0x10000},
920 {"extra-para", 0xf00000, 0x10000},
921 {"qos-db", 0xf10000, 0x30000},
922 {"log", 0xfe0000, 0x10000},
923 {"radio", 0xff0000, 0x10000},
927 .first_sysupgrade_partition
= "os-image",
928 .last_sysupgrade_partition
= "file-system",
931 /** Firmware layout for the Archer C6 v2 (EU/RU/JP) */
933 .id
= "ARCHER-C6-V2",
937 "{product_name:Archer C6,product_ver:2.0.0,special_id:45550000}\r\n"
938 "{product_name:Archer C6,product_ver:2.0.0,special_id:52550000}\r\n"
939 "{product_name:Archer C6,product_ver:2.0.0,special_id:4A500000}\r\n",
940 .support_trail
= '\x00',
941 .soft_ver
= "soft_ver:1.9.1\n",
944 {"fs-uboot", 0x00000, 0x20000},
945 {"default-mac", 0x20000, 0x00200},
946 {"pin", 0x20200, 0x00100},
947 {"product-info", 0x20300, 0x00200},
948 {"device-id", 0x20500, 0x0fb00},
949 {"firmware", 0x30000, 0x7a9400},
950 {"soft-version", 0x7d9400, 0x00100},
951 {"extra-para", 0x7d9500, 0x00100},
952 {"support-list", 0x7d9600, 0x00200},
953 {"profile", 0x7d9800, 0x03000},
954 {"default-config", 0x7dc800, 0x03000},
955 {"partition-table", 0x7df800, 0x00800},
956 {"user-config", 0x7e0000, 0x0c000},
957 {"certificate", 0x7ec000, 0x04000},
958 {"radio", 0x7f0000, 0x10000},
962 .first_sysupgrade_partition
= "os-image",
963 .last_sysupgrade_partition
= "file-system",
966 /** Firmware layout for the Archer C6 v2 (US) and A6 v2 (US/TW) */
968 .id
= "ARCHER-C6-V2-US",
972 "{product_name:Archer A6,product_ver:2.0.0,special_id:55530000}\n"
973 "{product_name:Archer A6,product_ver:2.0.0,special_id:54570000}\n"
974 "{product_name:Archer C6,product_ver:2.0.0,special_id:55530000}\n",
975 .support_trail
= '\x00',
976 .soft_ver
= "soft_ver:1.9.1\n",
979 {"factory-boot", 0x00000, 0x20000},
980 {"default-mac", 0x20000, 0x00200},
981 {"pin", 0x20200, 0x00100},
982 {"product-info", 0x20300, 0x00200},
983 {"device-id", 0x20500, 0x0fb00},
984 {"fs-uboot", 0x30000, 0x20000},
985 {"firmware", 0x50000, 0xf89400},
986 {"soft-version", 0xfd9400, 0x00100},
987 {"extra-para", 0xfd9500, 0x00100},
988 {"support-list", 0xfd9600, 0x00200},
989 {"profile", 0xfd9800, 0x03000},
990 {"default-config", 0xfdc800, 0x03000},
991 {"partition-table", 0xfdf800, 0x00800},
992 {"user-config", 0xfe0000, 0x0c000},
993 {"certificate", 0xfec000, 0x04000},
994 {"radio", 0xff0000, 0x10000},
997 .first_sysupgrade_partition
= "os-image",
998 .last_sysupgrade_partition
= "file-system",
1001 /** Firmware layout for the C60v1 */
1003 .id
= "ARCHER-C60-V1",
1007 "{product_name:Archer C60,product_ver:1.0.0,special_id:00000000}\r\n"
1008 "{product_name:Archer C60,product_ver:1.0.0,special_id:45550000}\r\n"
1009 "{product_name:Archer C60,product_ver:1.0.0,special_id:55530000}\r\n",
1010 .support_trail
= '\x00',
1011 .soft_ver
= "soft_ver:1.0.0\n",
1014 {"fs-uboot", 0x00000, 0x10000},
1015 {"default-mac", 0x10000, 0x00200},
1016 {"pin", 0x10200, 0x00200},
1017 {"product-info", 0x10400, 0x00100},
1018 {"partition-table", 0x10500, 0x00800},
1019 {"soft-version", 0x11300, 0x00200},
1020 {"support-list", 0x11500, 0x00100},
1021 {"device-id", 0x11600, 0x00100},
1022 {"profile", 0x11700, 0x03900},
1023 {"default-config", 0x15000, 0x04000},
1024 {"user-config", 0x19000, 0x04000},
1025 {"firmware", 0x20000, 0x7c8000},
1026 {"certyficate", 0x7e8000, 0x08000},
1027 {"radio", 0x7f0000, 0x10000},
1031 .first_sysupgrade_partition
= "os-image",
1032 .last_sysupgrade_partition
= "file-system",
1035 /** Firmware layout for the C60v2 */
1037 .id
= "ARCHER-C60-V2",
1041 "{product_name:Archer C60,product_ver:2.0.0,special_id:42520000}\r\n"
1042 "{product_name:Archer C60,product_ver:2.0.0,special_id:45550000}\r\n"
1043 "{product_name:Archer C60,product_ver:2.0.0,special_id:55530000}\r\n",
1044 .support_trail
= '\x00',
1045 .soft_ver
= "soft_ver:2.0.0\n",
1048 {"factory-boot", 0x00000, 0x1fb00},
1049 {"default-mac", 0x1fb00, 0x00200},
1050 {"pin", 0x1fd00, 0x00100},
1051 {"product-info", 0x1fe00, 0x00100},
1052 {"device-id", 0x1ff00, 0x00100},
1053 {"fs-uboot", 0x20000, 0x10000},
1054 {"firmware", 0x30000, 0x7a0000},
1055 {"soft-version", 0x7d9500, 0x00100},
1056 {"support-list", 0x7d9600, 0x00100},
1057 {"extra-para", 0x7d9700, 0x00100},
1058 {"profile", 0x7d9800, 0x03000},
1059 {"default-config", 0x7dc800, 0x03000},
1060 {"partition-table", 0x7df800, 0x00800},
1061 {"user-config", 0x7e0000, 0x0c000},
1062 {"certificate", 0x7ec000, 0x04000},
1063 {"radio", 0x7f0000, 0x10000},
1067 .first_sysupgrade_partition
= "os-image",
1068 .last_sysupgrade_partition
= "file-system",
1071 /** Firmware layout for the C60v3 */
1073 .id
= "ARCHER-C60-V3",
1077 "{product_name:Archer C60,product_ver:3.0.0,special_id:42520000}\r\n"
1078 "{product_name:Archer C60,product_ver:3.0.0,special_id:45550000}\r\n"
1079 "{product_name:Archer C60,product_ver:3.0.0,special_id:55530000}\r\n",
1080 .support_trail
= '\x00',
1081 .soft_ver
= "soft_ver:3.0.0\n",
1084 {"factory-boot", 0x00000, 0x1fb00},
1085 {"default-mac", 0x1fb00, 0x00200},
1086 {"pin", 0x1fd00, 0x00100},
1087 {"product-info", 0x1fe00, 0x00100},
1088 {"device-id", 0x1ff00, 0x00100},
1089 {"fs-uboot", 0x20000, 0x10000},
1090 {"firmware", 0x30000, 0x7a0000},
1091 {"soft-version", 0x7d9500, 0x00100},
1092 {"support-list", 0x7d9600, 0x00100},
1093 {"extra-para", 0x7d9700, 0x00100},
1094 {"profile", 0x7d9800, 0x03000},
1095 {"default-config", 0x7dc800, 0x03000},
1096 {"partition-table", 0x7df800, 0x00800},
1097 {"user-config", 0x7e0000, 0x0c000},
1098 {"certificate", 0x7ec000, 0x04000},
1099 {"radio", 0x7f0000, 0x10000},
1103 .first_sysupgrade_partition
= "os-image",
1104 .last_sysupgrade_partition
= "file-system",
1107 /** Firmware layout for the C5 */
1109 .id
= "ARCHER-C5-V2",
1113 "{product_name:ArcherC5,product_ver:2.0.0,special_id:00000000}\r\n"
1114 "{product_name:ArcherC5,product_ver:2.0.0,special_id:55530000}\r\n"
1115 "{product_name:ArcherC5,product_ver:2.0.0,special_id:4A500000}\r\n", /* JP version */
1116 .support_trail
= '\x00',
1120 {"fs-uboot", 0x00000, 0x40000},
1121 {"os-image", 0x40000, 0x200000},
1122 {"file-system", 0x240000, 0xc00000},
1123 {"default-mac", 0xe40000, 0x00200},
1124 {"pin", 0xe40200, 0x00200},
1125 {"product-info", 0xe40400, 0x00200},
1126 {"partition-table", 0xe50000, 0x10000},
1127 {"soft-version", 0xe60000, 0x00200},
1128 {"support-list", 0xe61000, 0x0f000},
1129 {"profile", 0xe70000, 0x10000},
1130 {"default-config", 0xe80000, 0x10000},
1131 {"user-config", 0xe90000, 0x50000},
1132 {"log", 0xee0000, 0x100000},
1133 {"radio_bk", 0xfe0000, 0x10000},
1134 {"radio", 0xff0000, 0x10000},
1138 .first_sysupgrade_partition
= "os-image",
1139 .last_sysupgrade_partition
= "file-system"
1142 /** Firmware layout for the C7 */
1144 .id
= "ARCHER-C7-V4",
1147 "{product_name:Archer C7,product_ver:4.0.0,special_id:00000000}\n"
1148 "{product_name:Archer C7,product_ver:4.0.0,special_id:41550000}\n"
1149 "{product_name:Archer C7,product_ver:4.0.0,special_id:45550000}\n"
1150 "{product_name:Archer C7,product_ver:4.0.0,special_id:4B520000}\n"
1151 "{product_name:Archer C7,product_ver:4.0.0,special_id:42520000}\n"
1152 "{product_name:Archer C7,product_ver:4.0.0,special_id:4A500000}\n"
1153 "{product_name:Archer C7,product_ver:4.0.0,special_id:52550000}\n"
1154 "{product_name:Archer C7,product_ver:4.0.0,special_id:54570000}\n"
1155 "{product_name:Archer C7,product_ver:4.0.0,special_id:55530000}\n"
1156 "{product_name:Archer C7,product_ver:4.0.0,special_id:43410000}\n",
1157 .support_trail
= '\x00',
1158 .soft_ver
= "soft_ver:1.0.0\n",
1160 /* We're using a dynamic kernel/rootfs split here */
1162 {"factory-boot", 0x00000, 0x20000},
1163 {"fs-uboot", 0x20000, 0x20000},
1164 {"firmware", 0x40000, 0xEC0000}, /* Stock: name os-image base 0x40000 size 0x120000 */
1165 /* Stock: name file-system base 0x160000 size 0xda0000 */
1166 {"default-mac", 0xf00000, 0x00200},
1167 {"pin", 0xf00200, 0x00200},
1168 {"device-id", 0xf00400, 0x00100},
1169 {"product-info", 0xf00500, 0x0fb00},
1170 {"soft-version", 0xf10000, 0x00100},
1171 {"extra-para", 0xf11000, 0x01000},
1172 {"support-list", 0xf12000, 0x0a000},
1173 {"profile", 0xf1c000, 0x04000},
1174 {"default-config", 0xf20000, 0x10000},
1175 {"user-config", 0xf30000, 0x40000},
1176 {"qos-db", 0xf70000, 0x40000},
1177 {"certificate", 0xfb0000, 0x10000},
1178 {"partition-table", 0xfc0000, 0x10000},
1179 {"log", 0xfd0000, 0x20000},
1180 {"radio", 0xff0000, 0x10000},
1184 .first_sysupgrade_partition
= "os-image",
1185 .last_sysupgrade_partition
= "file-system",
1188 /** Firmware layout for the C7 v5*/
1190 .id
= "ARCHER-C7-V5",
1193 "{product_name:Archer C7,product_ver:5.0.0,special_id:00000000}\n"
1194 "{product_name:Archer C7,product_ver:5.0.0,special_id:45550000}\n"
1195 "{product_name:Archer C7,product_ver:5.0.0,special_id:55530000}\n"
1196 "{product_name:Archer C7,product_ver:5.0.0,special_id:43410000}\n"
1197 "{product_name:Archer C7,product_ver:5.0.0,special_id:4A500000}\n"
1198 "{product_name:Archer C7,product_ver:5.0.0,special_id:54570000}\n"
1199 "{product_name:Archer C7,product_ver:5.0.0,special_id:52550000}\n"
1200 "{product_name:Archer C7,product_ver:5.0.0,special_id:4B520000}\n",
1202 .support_trail
= '\x00',
1203 .soft_ver
= "soft_ver:1.0.0\n",
1205 /* We're using a dynamic kernel/rootfs split here */
1207 {"factory-boot", 0x00000, 0x20000},
1208 {"fs-uboot", 0x20000, 0x20000},
1209 {"partition-table", 0x40000, 0x10000},
1210 {"radio", 0x50000, 0x10000},
1211 {"default-mac", 0x60000, 0x00200},
1212 {"pin", 0x60200, 0x00200},
1213 {"device-id", 0x60400, 0x00100},
1214 {"product-info", 0x60500, 0x0fb00},
1215 {"soft-version", 0x70000, 0x01000},
1216 {"extra-para", 0x71000, 0x01000},
1217 {"support-list", 0x72000, 0x0a000},
1218 {"profile", 0x7c000, 0x04000},
1219 {"user-config", 0x80000, 0x40000},
1222 {"firmware", 0xc0000, 0xf00000}, /* Stock: name os-image base 0xc0000 size 0x120000 */
1223 /* Stock: name file-system base 0x1e0000 size 0xde0000 */
1225 {"log", 0xfc0000, 0x20000},
1226 {"certificate", 0xfe0000, 0x10000},
1227 {"default-config", 0xff0000, 0x10000},
1232 .first_sysupgrade_partition
= "os-image",
1233 .last_sysupgrade_partition
= "file-system",
1236 /** Firmware layout for the C9 */
1242 "{product_name:ArcherC9,"
1243 "product_ver:1.0.0,"
1244 "special_id:00000000}\n",
1245 .support_trail
= '\x00',
1249 {"fs-uboot", 0x00000, 0x40000},
1250 {"os-image", 0x40000, 0x200000},
1251 {"file-system", 0x240000, 0xc00000},
1252 {"default-mac", 0xe40000, 0x00200},
1253 {"pin", 0xe40200, 0x00200},
1254 {"product-info", 0xe40400, 0x00200},
1255 {"partition-table", 0xe50000, 0x10000},
1256 {"soft-version", 0xe60000, 0x00200},
1257 {"support-list", 0xe61000, 0x0f000},
1258 {"profile", 0xe70000, 0x10000},
1259 {"default-config", 0xe80000, 0x10000},
1260 {"user-config", 0xe90000, 0x50000},
1261 {"log", 0xee0000, 0x100000},
1262 {"radio_bk", 0xfe0000, 0x10000},
1263 {"radio", 0xff0000, 0x10000},
1267 .first_sysupgrade_partition
= "os-image",
1268 .last_sysupgrade_partition
= "file-system"
1271 /** Firmware layout for the EAP120 */
1274 .vendor
= "EAP120(TP-LINK|UN|N300-2):1.0\r\n",
1277 "EAP120(TP-LINK|UN|N300-2):1.0\r\n",
1278 .support_trail
= '\xff',
1282 {"fs-uboot", 0x00000, 0x20000},
1283 {"partition-table", 0x20000, 0x02000},
1284 {"default-mac", 0x30000, 0x00020},
1285 {"support-list", 0x31000, 0x00100},
1286 {"product-info", 0x31100, 0x00100},
1287 {"soft-version", 0x32000, 0x00100},
1288 {"os-image", 0x40000, 0x180000},
1289 {"file-system", 0x1c0000, 0x600000},
1290 {"user-config", 0x7c0000, 0x10000},
1291 {"backup-config", 0x7d0000, 0x10000},
1292 {"log", 0x7e0000, 0x10000},
1293 {"radio", 0x7f0000, 0x10000},
1297 .first_sysupgrade_partition
= "os-image",
1298 .last_sysupgrade_partition
= "file-system"
1301 /** Firmware layout for the EAP225-Outdoor v1 */
1303 .id
= "EAP225-OUTDOOR-V1",
1306 "EAP225-Outdoor(TP-Link|UN|AC1200-D):1.0\r\n",
1307 .support_trail
= '\xff',
1309 .soft_ver_compat_level
= 1,
1312 {"fs-uboot", 0x00000, 0x20000},
1313 {"partition-table", 0x20000, 0x02000},
1314 {"default-mac", 0x30000, 0x01000},
1315 {"support-list", 0x31000, 0x00100},
1316 {"product-info", 0x31100, 0x00400},
1317 {"soft-version", 0x32000, 0x00100},
1318 {"firmware", 0x40000, 0xd80000},
1319 {"user-config", 0xdc0000, 0x30000},
1320 {"mutil-log", 0xf30000, 0x80000},
1321 {"oops", 0xfb0000, 0x40000},
1322 {"radio", 0xff0000, 0x10000},
1326 .first_sysupgrade_partition
= "os-image",
1327 .last_sysupgrade_partition
= "file-system"
1330 /** Firmware layout for the EAP225 v3 */
1335 "EAP225(TP-Link|UN|AC1350-D):3.0\r\n",
1336 .support_trail
= '\xff',
1338 .soft_ver_compat_level
= 1,
1341 {"fs-uboot", 0x00000, 0x20000},
1342 {"partition-table", 0x20000, 0x02000},
1343 {"default-mac", 0x30000, 0x01000},
1344 {"support-list", 0x31000, 0x00100},
1345 {"product-info", 0x31100, 0x00400},
1346 {"soft-version", 0x32000, 0x00100},
1347 {"firmware", 0x40000, 0xd80000},
1348 {"user-config", 0xdc0000, 0x30000},
1349 {"mutil-log", 0xf30000, 0x80000},
1350 {"oops", 0xfb0000, 0x40000},
1351 {"radio", 0xff0000, 0x10000},
1355 .first_sysupgrade_partition
= "os-image",
1356 .last_sysupgrade_partition
= "file-system"
1359 /** Firmware layout for the EAP225-Wall v2 */
1361 .id
= "EAP225-WALL-V2",
1364 "EAP225-Wall(TP-Link|UN|AC1200-D):2.0\r\n",
1365 .support_trail
= '\xff',
1367 .soft_ver_compat_level
= 1,
1370 {"fs-uboot", 0x00000, 0x20000},
1371 {"partition-table", 0x20000, 0x02000},
1372 {"default-mac", 0x30000, 0x01000},
1373 {"support-list", 0x31000, 0x00100},
1374 {"product-info", 0x31100, 0x00400},
1375 {"soft-version", 0x32000, 0x00100},
1376 {"firmware", 0x40000, 0xd80000},
1377 {"user-config", 0xdc0000, 0x30000},
1378 {"mutil-log", 0xf30000, 0x80000},
1379 {"oops", 0xfb0000, 0x40000},
1380 {"radio", 0xff0000, 0x10000},
1384 .first_sysupgrade_partition
= "os-image",
1385 .last_sysupgrade_partition
= "file-system"
1388 /** Firmware layout for the EAP245 v1 */
1393 "EAP245(TP-LINK|UN|AC1750-D):1.0\r\n",
1394 .support_trail
= '\xff',
1398 {"fs-uboot", 0x00000, 0x20000},
1399 {"partition-table", 0x20000, 0x02000},
1400 {"default-mac", 0x30000, 0x01000},
1401 {"support-list", 0x31000, 0x00100},
1402 {"product-info", 0x31100, 0x00400},
1403 {"soft-version", 0x32000, 0x00100},
1404 {"firmware", 0x40000, 0xd80000},
1405 {"user-config", 0xdc0000, 0x30000},
1406 {"radio", 0xff0000, 0x10000},
1410 .first_sysupgrade_partition
= "os-image",
1411 .last_sysupgrade_partition
= "file-system"
1414 /** Firmware layout for the EAP245 v3 */
1419 "EAP245(TP-Link|UN|AC1750-D):3.0\r\n",
1420 .support_trail
= '\xff',
1422 .soft_ver_compat_level
= 1,
1424 /** Firmware partition with dynamic kernel/rootfs split */
1426 {"factroy-boot", 0x00000, 0x40000},
1427 {"fs-uboot", 0x40000, 0x40000},
1428 {"partition-table", 0x80000, 0x10000},
1429 {"default-mac", 0x90000, 0x01000},
1430 {"support-list", 0x91000, 0x00100},
1431 {"product-info", 0x91100, 0x00400},
1432 {"soft-version", 0x92000, 0x00100},
1433 {"radio", 0xa0000, 0x10000},
1434 {"extra-para", 0xb0000, 0x10000},
1435 {"firmware", 0xc0000, 0xe40000},
1436 {"config", 0xf00000, 0x30000},
1437 {"mutil-log", 0xf30000, 0x80000},
1438 {"oops", 0xfb0000, 0x40000},
1442 .first_sysupgrade_partition
= "os-image",
1443 .last_sysupgrade_partition
= "file-system"
1446 /** Firmware layout for the TL-WA850RE v2 */
1448 .id
= "TLWA850REV2",
1452 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:55530000}\n"
1453 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:00000000}\n"
1454 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:55534100}\n"
1455 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:45550000}\n"
1456 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:4B520000}\n"
1457 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:42520000}\n"
1458 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:4A500000}\n"
1459 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:43410000}\n"
1460 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:41550000}\n"
1461 "{product_name:TL-WA850RE,product_ver:2.0.0,special_id:52550000}\n",
1462 .support_trail
= '\x00',
1466 576KB were moved from file-system to os-image
1467 in comparison to the stock image
1470 {"fs-uboot", 0x00000, 0x20000},
1471 {"firmware", 0x20000, 0x390000},
1472 {"partition-table", 0x3b0000, 0x02000},
1473 {"default-mac", 0x3c0000, 0x00020},
1474 {"pin", 0x3c0100, 0x00020},
1475 {"product-info", 0x3c1000, 0x01000},
1476 {"soft-version", 0x3c2000, 0x00100},
1477 {"support-list", 0x3c3000, 0x01000},
1478 {"profile", 0x3c4000, 0x08000},
1479 {"user-config", 0x3d0000, 0x10000},
1480 {"default-config", 0x3e0000, 0x10000},
1481 {"radio", 0x3f0000, 0x10000},
1485 .first_sysupgrade_partition
= "os-image",
1486 .last_sysupgrade_partition
= "file-system"
1489 /** Firmware layout for the TL-WA855RE v1 */
1491 .id
= "TLWA855REV1",
1495 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:00000000}\n"
1496 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:55530000}\n"
1497 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:45550000}\n"
1498 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:4B520000}\n"
1499 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:42520000}\n"
1500 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:4A500000}\n"
1501 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:43410000}\n"
1502 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:41550000}\n"
1503 "{product_name:TL-WA855RE,product_ver:1.0.0,special_id:52550000}\n",
1504 .support_trail
= '\x00',
1508 {"fs-uboot", 0x00000, 0x20000},
1509 {"os-image", 0x20000, 0x150000},
1510 {"file-system", 0x170000, 0x240000},
1511 {"partition-table", 0x3b0000, 0x02000},
1512 {"default-mac", 0x3c0000, 0x00020},
1513 {"pin", 0x3c0100, 0x00020},
1514 {"product-info", 0x3c1000, 0x01000},
1515 {"soft-version", 0x3c2000, 0x00100},
1516 {"support-list", 0x3c3000, 0x01000},
1517 {"profile", 0x3c4000, 0x08000},
1518 {"user-config", 0x3d0000, 0x10000},
1519 {"default-config", 0x3e0000, 0x10000},
1520 {"radio", 0x3f0000, 0x10000},
1524 .first_sysupgrade_partition
= "os-image",
1525 .last_sysupgrade_partition
= "file-system"
1528 /** Firmware layout for the TL-WPA8630P v2 (EU)*/
1530 .id
= "TL-WPA8630P-V2.0-EU",
1534 "{product_name:TL-WPA8630P,product_ver:2.0.0,special_id:45550000}\n",
1535 .support_trail
= '\x00',
1539 {"factory-uboot", 0x00000, 0x20000},
1540 {"fs-uboot", 0x20000, 0x20000},
1541 {"firmware", 0x40000, 0x5e0000},
1542 {"partition-table", 0x620000, 0x02000},
1543 {"default-mac", 0x630000, 0x00020},
1544 {"pin", 0x630100, 0x00020},
1545 {"device-id", 0x630200, 0x00030},
1546 {"product-info", 0x631100, 0x01000},
1547 {"extra-para", 0x632100, 0x01000},
1548 {"soft-version", 0x640000, 0x01000},
1549 {"support-list", 0x641000, 0x01000},
1550 {"profile", 0x642000, 0x08000},
1551 {"user-config", 0x650000, 0x10000},
1552 {"default-config", 0x660000, 0x10000},
1553 {"default-nvm", 0x670000, 0xc0000},
1554 {"default-pib", 0x730000, 0x40000},
1555 {"radio", 0x7f0000, 0x10000},
1559 .first_sysupgrade_partition
= "os-image",
1560 .last_sysupgrade_partition
= "file-system"
1563 /** Firmware layout for the TL-WPA8630P v2 (INT)*/
1565 .id
= "TL-WPA8630P-V2-INT",
1569 "{product_name:TL-WPA8630P,product_ver:2.0.0,special_id:41550000}\n"
1570 "{product_name:TL-WPA8630P,product_ver:2.0.0,special_id:44450000}\n"
1571 "{product_name:TL-WPA8630P,product_ver:2.1.0,special_id:41550000}\n",
1572 .support_trail
= '\x00',
1576 {"factory-uboot", 0x00000, 0x20000},
1577 {"fs-uboot", 0x20000, 0x20000},
1578 {"firmware", 0x40000, 0x5e0000},
1579 {"partition-table", 0x620000, 0x02000},
1580 {"extra-para", 0x632100, 0x01000},
1581 {"soft-version", 0x640000, 0x01000},
1582 {"support-list", 0x641000, 0x01000},
1583 {"profile", 0x642000, 0x08000},
1584 {"user-config", 0x650000, 0x10000},
1585 {"default-config", 0x660000, 0x10000},
1586 {"default-nvm", 0x670000, 0xc0000},
1587 {"default-pib", 0x730000, 0x40000},
1588 {"default-mac", 0x7e0000, 0x00020},
1589 {"pin", 0x7e0100, 0x00020},
1590 {"device-id", 0x7e0200, 0x00030},
1591 {"product-info", 0x7e1100, 0x01000},
1592 {"radio", 0x7f0000, 0x10000},
1596 .first_sysupgrade_partition
= "os-image",
1597 .last_sysupgrade_partition
= "file-system"
1600 /** Firmware layout for the TL-WPA8630P v2.1 (EU)*/
1602 .id
= "TL-WPA8630P-V2.1-EU",
1606 "{product_name:TL-WPA8630P,product_ver:2.1.0,special_id:45550000}\n",
1607 .support_trail
= '\x00',
1611 {"factory-uboot", 0x00000, 0x20000},
1612 {"fs-uboot", 0x20000, 0x20000},
1613 {"firmware", 0x40000, 0x5e0000},
1614 {"extra-para", 0x680000, 0x01000},
1615 {"product-info", 0x690000, 0x01000},
1616 {"partition-table", 0x6a0000, 0x02000},
1617 {"soft-version", 0x6b0000, 0x01000},
1618 {"support-list", 0x6b1000, 0x01000},
1619 {"profile", 0x6b2000, 0x08000},
1620 {"user-config", 0x6c0000, 0x10000},
1621 {"default-config", 0x6d0000, 0x10000},
1622 {"default-nvm", 0x6e0000, 0xc0000},
1623 {"default-pib", 0x7a0000, 0x40000},
1624 {"default-mac", 0x7e0000, 0x00020},
1625 {"pin", 0x7e0100, 0x00020},
1626 {"device-id", 0x7e0200, 0x00030},
1627 {"radio", 0x7f0000, 0x10000},
1631 .first_sysupgrade_partition
= "os-image",
1632 .last_sysupgrade_partition
= "file-system"
1635 /** Firmware layout for the TL-WR1043 v5 */
1637 .id
= "TLWR1043NV5",
1641 "{product_name:TL-WR1043N,product_ver:5.0.0,special_id:45550000}\n"
1642 "{product_name:TL-WR1043N,product_ver:5.0.0,special_id:55530000}\n",
1643 .support_trail
= '\x00',
1644 .soft_ver
= "soft_ver:1.0.0\n",
1646 {"factory-boot", 0x00000, 0x20000},
1647 {"fs-uboot", 0x20000, 0x20000},
1648 {"firmware", 0x40000, 0xec0000},
1649 {"default-mac", 0xf00000, 0x00200},
1650 {"pin", 0xf00200, 0x00200},
1651 {"device-id", 0xf00400, 0x00100},
1652 {"product-info", 0xf00500, 0x0fb00},
1653 {"soft-version", 0xf10000, 0x01000},
1654 {"extra-para", 0xf11000, 0x01000},
1655 {"support-list", 0xf12000, 0x0a000},
1656 {"profile", 0xf1c000, 0x04000},
1657 {"default-config", 0xf20000, 0x10000},
1658 {"user-config", 0xf30000, 0x40000},
1659 {"qos-db", 0xf70000, 0x40000},
1660 {"certificate", 0xfb0000, 0x10000},
1661 {"partition-table", 0xfc0000, 0x10000},
1662 {"log", 0xfd0000, 0x20000},
1663 {"radio", 0xff0000, 0x10000},
1666 .first_sysupgrade_partition
= "os-image",
1667 .last_sysupgrade_partition
= "file-system"
1670 /** Firmware layout for the TL-WR1043 v4 */
1672 .id
= "TLWR1043NDV4",
1676 "{product_name:TL-WR1043ND,product_ver:4.0.0,special_id:45550000}\n",
1677 .support_trail
= '\x00',
1680 /* We're using a dynamic kernel/rootfs split here */
1682 {"fs-uboot", 0x00000, 0x20000},
1683 {"firmware", 0x20000, 0xf30000},
1684 {"default-mac", 0xf50000, 0x00200},
1685 {"pin", 0xf50200, 0x00200},
1686 {"product-info", 0xf50400, 0x0fc00},
1687 {"soft-version", 0xf60000, 0x0b000},
1688 {"support-list", 0xf6b000, 0x04000},
1689 {"profile", 0xf70000, 0x04000},
1690 {"default-config", 0xf74000, 0x0b000},
1691 {"user-config", 0xf80000, 0x40000},
1692 {"partition-table", 0xfc0000, 0x10000},
1693 {"log", 0xfd0000, 0x20000},
1694 {"radio", 0xff0000, 0x10000},
1698 .first_sysupgrade_partition
= "os-image",
1699 .last_sysupgrade_partition
= "file-system"
1702 /** Firmware layout for the TL-WR902AC v1 */
1704 .id
= "TL-WR902AC-V1",
1708 "{product_name:TL-WR902AC,product_ver:1.0.0,special_id:45550000}\n"
1709 "{product_name:TL-WR902AC,product_ver:1.0.0,special_id:55530000}\n",
1710 .support_trail
= '\x00',
1714 384KB were moved from file-system to os-image
1715 in comparison to the stock image
1718 {"fs-uboot", 0x00000, 0x20000},
1719 {"firmware", 0x20000, 0x730000},
1720 {"default-mac", 0x750000, 0x00200},
1721 {"pin", 0x750200, 0x00200},
1722 {"product-info", 0x750400, 0x0fc00},
1723 {"soft-version", 0x760000, 0x0b000},
1724 {"support-list", 0x76b000, 0x04000},
1725 {"profile", 0x770000, 0x04000},
1726 {"default-config", 0x774000, 0x0b000},
1727 {"user-config", 0x780000, 0x40000},
1728 {"partition-table", 0x7c0000, 0x10000},
1729 {"log", 0x7d0000, 0x20000},
1730 {"radio", 0x7f0000, 0x10000},
1734 .first_sysupgrade_partition
= "os-image",
1735 .last_sysupgrade_partition
= "file-system",
1738 /** Firmware layout for the TL-WR942N V1 */
1744 "{product_name:TL-WR942N,product_ver:1.0.0,special_id:00000000}\r\n"
1745 "{product_name:TL-WR942N,product_ver:1.0.0,special_id:52550000}\r\n",
1746 .support_trail
= '\x00',
1750 {"fs-uboot", 0x00000, 0x20000},
1751 {"firmware", 0x20000, 0xe20000},
1752 {"default-mac", 0xe40000, 0x00200},
1753 {"pin", 0xe40200, 0x00200},
1754 {"product-info", 0xe40400, 0x0fc00},
1755 {"partition-table", 0xe50000, 0x10000},
1756 {"soft-version", 0xe60000, 0x10000},
1757 {"support-list", 0xe70000, 0x10000},
1758 {"profile", 0xe80000, 0x10000},
1759 {"default-config", 0xe90000, 0x10000},
1760 {"user-config", 0xea0000, 0x40000},
1761 {"qos-db", 0xee0000, 0x40000},
1762 {"certificate", 0xf20000, 0x10000},
1763 {"usb-config", 0xfb0000, 0x10000},
1764 {"log", 0xfc0000, 0x20000},
1765 {"radio-bk", 0xfe0000, 0x10000},
1766 {"radio", 0xff0000, 0x10000},
1770 .first_sysupgrade_partition
= "os-image",
1771 .last_sysupgrade_partition
= "file-system",
1774 /** Firmware layout for the RE200 v2 */
1780 "{product_name:RE200,product_ver:2.0.0,special_id:00000000}\n"
1781 "{product_name:RE200,product_ver:2.0.0,special_id:41520000}\n"
1782 "{product_name:RE200,product_ver:2.0.0,special_id:41550000}\n"
1783 "{product_name:RE200,product_ver:2.0.0,special_id:42520000}\n"
1784 "{product_name:RE200,product_ver:2.0.0,special_id:43410000}\n"
1785 "{product_name:RE200,product_ver:2.0.0,special_id:45530000}\n"
1786 "{product_name:RE200,product_ver:2.0.0,special_id:45550000}\n"
1787 "{product_name:RE200,product_ver:2.0.0,special_id:49440000}\n"
1788 "{product_name:RE200,product_ver:2.0.0,special_id:4a500000}\n"
1789 "{product_name:RE200,product_ver:2.0.0,special_id:4b520000}\n"
1790 "{product_name:RE200,product_ver:2.0.0,special_id:52550000}\n"
1791 "{product_name:RE200,product_ver:2.0.0,special_id:54570000}\n"
1792 "{product_name:RE200,product_ver:2.0.0,special_id:55530000}\n",
1793 .support_trail
= '\x00',
1797 {"fs-uboot", 0x00000, 0x20000},
1798 {"firmware", 0x20000, 0x7a0000},
1799 {"partition-table", 0x7c0000, 0x02000},
1800 {"default-mac", 0x7c2000, 0x00020},
1801 {"pin", 0x7c2100, 0x00020},
1802 {"product-info", 0x7c3100, 0x01000},
1803 {"soft-version", 0x7c4200, 0x01000},
1804 {"support-list", 0x7c5200, 0x01000},
1805 {"profile", 0x7c6200, 0x08000},
1806 {"config-info", 0x7ce200, 0x00400},
1807 {"user-config", 0x7d0000, 0x10000},
1808 {"default-config", 0x7e0000, 0x10000},
1809 {"radio", 0x7f0000, 0x10000},
1813 .first_sysupgrade_partition
= "os-image",
1814 .last_sysupgrade_partition
= "file-system"
1817 /** Firmware layout for the RE200 v3 */
1823 "{product_name:RE200,product_ver:3.0.0,special_id:00000000}\n"
1824 "{product_name:RE200,product_ver:3.0.0,special_id:41520000}\n"
1825 "{product_name:RE200,product_ver:3.0.0,special_id:41550000}\n"
1826 "{product_name:RE200,product_ver:3.0.0,special_id:42520000}\n"
1827 "{product_name:RE200,product_ver:3.0.0,special_id:43410000}\n"
1828 "{product_name:RE200,product_ver:3.0.0,special_id:45470000}\n"
1829 "{product_name:RE200,product_ver:3.0.0,special_id:45530000}\n"
1830 "{product_name:RE200,product_ver:3.0.0,special_id:45550000}\n"
1831 "{product_name:RE200,product_ver:3.0.0,special_id:49440000}\n"
1832 "{product_name:RE200,product_ver:3.0.0,special_id:4A500000}\n"
1833 "{product_name:RE200,product_ver:3.0.0,special_id:4B520000}\n"
1834 "{product_name:RE200,product_ver:3.0.0,special_id:52550000}\n"
1835 "{product_name:RE200,product_ver:3.0.0,special_id:54570000}\n"
1836 "{product_name:RE200,product_ver:3.0.0,special_id:55530000}\n",
1837 .support_trail
= '\x00',
1841 {"fs-uboot", 0x00000, 0x20000},
1842 {"firmware", 0x20000, 0x7a0000},
1843 {"partition-table", 0x7c0000, 0x02000},
1844 {"default-mac", 0x7c2000, 0x00020},
1845 {"pin", 0x7c2100, 0x00020},
1846 {"product-info", 0x7c3100, 0x01000},
1847 {"soft-version", 0x7c4200, 0x01000},
1848 {"support-list", 0x7c5200, 0x01000},
1849 {"profile", 0x7c6200, 0x08000},
1850 {"config-info", 0x7ce200, 0x00400},
1851 {"user-config", 0x7d0000, 0x10000},
1852 {"default-config", 0x7e0000, 0x10000},
1853 {"radio", 0x7f0000, 0x10000},
1857 .first_sysupgrade_partition
= "os-image",
1858 .last_sysupgrade_partition
= "file-system"
1861 /** Firmware layout for the RE200 v4 */
1867 "{product_name:RE200,product_ver:4.0.0,special_id:00000000}\n"
1868 "{product_name:RE200,product_ver:4.0.0,special_id:45550000}\n"
1869 "{product_name:RE200,product_ver:4.0.0,special_id:4A500000}\n"
1870 "{product_name:RE200,product_ver:4.0.0,special_id:4B520000}\n"
1871 "{product_name:RE200,product_ver:4.0.0,special_id:43410000}\n"
1872 "{product_name:RE200,product_ver:4.0.0,special_id:41550000}\n"
1873 "{product_name:RE200,product_ver:4.0.0,special_id:42520000}\n"
1874 "{product_name:RE200,product_ver:4.0.0,special_id:55530000}\n"
1875 "{product_name:RE200,product_ver:4.0.0,special_id:41520000}\n"
1876 "{product_name:RE200,product_ver:4.0.0,special_id:52550000}\n"
1877 "{product_name:RE200,product_ver:4.0.0,special_id:54570000}\n"
1878 "{product_name:RE200,product_ver:4.0.0,special_id:45530000}\n"
1879 "{product_name:RE200,product_ver:4.0.0,special_id:49440000}\n"
1880 "{product_name:RE200,product_ver:4.0.0,special_id:45470000}\n",
1881 .support_trail
= '\x00',
1882 .soft_ver
= "soft_ver:1.1.0\n",
1885 {"fs-uboot", 0x00000, 0x20000},
1886 {"firmware", 0x20000, 0x7a0000},
1887 {"partition-table", 0x7c0000, 0x02000},
1888 {"default-mac", 0x7c2000, 0x00020},
1889 {"pin", 0x7c2100, 0x00020},
1890 {"product-info", 0x7c3100, 0x01000},
1891 {"soft-version", 0x7c4200, 0x01000},
1892 {"support-list", 0x7c5200, 0x01000},
1893 {"profile", 0x7c6200, 0x08000},
1894 {"config-info", 0x7ce200, 0x00400},
1895 {"user-config", 0x7d0000, 0x10000},
1896 {"default-config", 0x7e0000, 0x10000},
1897 {"radio", 0x7f0000, 0x10000},
1901 .first_sysupgrade_partition
= "os-image",
1902 .last_sysupgrade_partition
= "file-system"
1905 /** Firmware layout for the RE220 v2 */
1911 "{product_name:RE220,product_ver:2.0.0,special_id:00000000}\n"
1912 "{product_name:RE220,product_ver:2.0.0,special_id:41520000}\n"
1913 "{product_name:RE220,product_ver:2.0.0,special_id:41550000}\n"
1914 "{product_name:RE220,product_ver:2.0.0,special_id:42520000}\n"
1915 "{product_name:RE220,product_ver:2.0.0,special_id:43410000}\n"
1916 "{product_name:RE220,product_ver:2.0.0,special_id:45530000}\n"
1917 "{product_name:RE220,product_ver:2.0.0,special_id:45550000}\n"
1918 "{product_name:RE220,product_ver:2.0.0,special_id:49440000}\n"
1919 "{product_name:RE220,product_ver:2.0.0,special_id:4a500000}\n"
1920 "{product_name:RE220,product_ver:2.0.0,special_id:4b520000}\n"
1921 "{product_name:RE220,product_ver:2.0.0,special_id:52550000}\n"
1922 "{product_name:RE220,product_ver:2.0.0,special_id:54570000}\n"
1923 "{product_name:RE220,product_ver:2.0.0,special_id:55530000}\n",
1924 .support_trail
= '\x00',
1928 {"fs-uboot", 0x00000, 0x20000},
1929 {"firmware", 0x20000, 0x7a0000},
1930 {"partition-table", 0x7c0000, 0x02000},
1931 {"default-mac", 0x7c2000, 0x00020},
1932 {"pin", 0x7c2100, 0x00020},
1933 {"product-info", 0x7c3100, 0x01000},
1934 {"soft-version", 0x7c4200, 0x01000},
1935 {"support-list", 0x7c5200, 0x01000},
1936 {"profile", 0x7c6200, 0x08000},
1937 {"config-info", 0x7ce200, 0x00400},
1938 {"user-config", 0x7d0000, 0x10000},
1939 {"default-config", 0x7e0000, 0x10000},
1940 {"radio", 0x7f0000, 0x10000},
1944 .first_sysupgrade_partition
= "os-image",
1945 .last_sysupgrade_partition
= "file-system"
1948 /** Firmware layout for the RE305 v1 */
1954 "{product_name:RE305,product_ver:1.0.0,special_id:45550000}\n"
1955 "{product_name:RE305,product_ver:1.0.0,special_id:55530000}\n"
1956 "{product_name:RE305,product_ver:1.0.0,special_id:4a500000}\n"
1957 "{product_name:RE305,product_ver:1.0.0,special_id:42520000}\n"
1958 "{product_name:RE305,product_ver:1.0.0,special_id:4b520000}\n"
1959 "{product_name:RE305,product_ver:1.0.0,special_id:41550000}\n"
1960 "{product_name:RE305,product_ver:1.0.0,special_id:43410000}\n",
1961 .support_trail
= '\x00',
1965 {"fs-uboot", 0x00000, 0x20000},
1966 {"firmware", 0x20000, 0x5e0000},
1967 {"partition-table", 0x600000, 0x02000},
1968 {"default-mac", 0x610000, 0x00020},
1969 {"pin", 0x610100, 0x00020},
1970 {"product-info", 0x611100, 0x01000},
1971 {"soft-version", 0x620000, 0x01000},
1972 {"support-list", 0x621000, 0x01000},
1973 {"profile", 0x622000, 0x08000},
1974 {"user-config", 0x630000, 0x10000},
1975 {"default-config", 0x640000, 0x10000},
1976 {"radio", 0x7f0000, 0x10000},
1980 .first_sysupgrade_partition
= "os-image",
1981 .last_sysupgrade_partition
= "file-system"
1984 /** Firmware layout for the RE350 v1 */
1990 "{product_name:RE350,product_ver:1.0.0,special_id:45550000}\n"
1991 "{product_name:RE350,product_ver:1.0.0,special_id:00000000}\n"
1992 "{product_name:RE350,product_ver:1.0.0,special_id:41550000}\n"
1993 "{product_name:RE350,product_ver:1.0.0,special_id:55530000}\n"
1994 "{product_name:RE350,product_ver:1.0.0,special_id:43410000}\n"
1995 "{product_name:RE350,product_ver:1.0.0,special_id:4b520000}\n"
1996 "{product_name:RE350,product_ver:1.0.0,special_id:4a500000}\n",
1997 .support_trail
= '\x00',
2000 /** We're using a dynamic kernel/rootfs split here */
2002 {"fs-uboot", 0x00000, 0x20000},
2003 {"firmware", 0x20000, 0x5e0000},
2004 {"partition-table", 0x600000, 0x02000},
2005 {"default-mac", 0x610000, 0x00020},
2006 {"pin", 0x610100, 0x00020},
2007 {"product-info", 0x611100, 0x01000},
2008 {"soft-version", 0x620000, 0x01000},
2009 {"support-list", 0x621000, 0x01000},
2010 {"profile", 0x622000, 0x08000},
2011 {"user-config", 0x630000, 0x10000},
2012 {"default-config", 0x640000, 0x10000},
2013 {"radio", 0x7f0000, 0x10000},
2017 .first_sysupgrade_partition
= "os-image",
2018 .last_sysupgrade_partition
= "file-system"
2021 /** Firmware layout for the RE350K v1 */
2027 "{product_name:RE350K,product_ver:1.0.0,special_id:00000000,product_region:US}\n",
2028 .support_trail
= '\x00',
2031 /** We're using a dynamic kernel/rootfs split here */
2033 {"fs-uboot", 0x00000, 0x20000},
2034 {"firmware", 0x20000, 0xd70000},
2035 {"partition-table", 0xd90000, 0x02000},
2036 {"default-mac", 0xda0000, 0x00020},
2037 {"pin", 0xda0100, 0x00020},
2038 {"product-info", 0xda1100, 0x01000},
2039 {"soft-version", 0xdb0000, 0x01000},
2040 {"support-list", 0xdb1000, 0x01000},
2041 {"profile", 0xdb2000, 0x08000},
2042 {"user-config", 0xdc0000, 0x10000},
2043 {"default-config", 0xdd0000, 0x10000},
2044 {"device-id", 0xde0000, 0x00108},
2045 {"radio", 0xff0000, 0x10000},
2049 .first_sysupgrade_partition
= "os-image",
2050 .last_sysupgrade_partition
= "file-system"
2053 /** Firmware layout for the RE355 */
2059 "{product_name:RE355,product_ver:1.0.0,special_id:00000000}\r\n"
2060 "{product_name:RE355,product_ver:1.0.0,special_id:55530000}\r\n"
2061 "{product_name:RE355,product_ver:1.0.0,special_id:45550000}\r\n"
2062 "{product_name:RE355,product_ver:1.0.0,special_id:4A500000}\r\n"
2063 "{product_name:RE355,product_ver:1.0.0,special_id:43410000}\r\n"
2064 "{product_name:RE355,product_ver:1.0.0,special_id:41550000}\r\n"
2065 "{product_name:RE355,product_ver:1.0.0,special_id:4B520000}\r\n"
2066 "{product_name:RE355,product_ver:1.0.0,special_id:55534100}\r\n",
2067 .support_trail
= '\x00',
2070 /* We're using a dynamic kernel/rootfs split here */
2072 {"fs-uboot", 0x00000, 0x20000},
2073 {"firmware", 0x20000, 0x5e0000},
2074 {"partition-table", 0x600000, 0x02000},
2075 {"default-mac", 0x610000, 0x00020},
2076 {"pin", 0x610100, 0x00020},
2077 {"product-info", 0x611100, 0x01000},
2078 {"soft-version", 0x620000, 0x01000},
2079 {"support-list", 0x621000, 0x01000},
2080 {"profile", 0x622000, 0x08000},
2081 {"user-config", 0x630000, 0x10000},
2082 {"default-config", 0x640000, 0x10000},
2083 {"radio", 0x7f0000, 0x10000},
2087 .first_sysupgrade_partition
= "os-image",
2088 .last_sysupgrade_partition
= "file-system"
2091 /** Firmware layout for the RE450 */
2097 "{product_name:RE450,product_ver:1.0.0,special_id:00000000}\r\n"
2098 "{product_name:RE450,product_ver:1.0.0,special_id:55530000}\r\n"
2099 "{product_name:RE450,product_ver:1.0.0,special_id:45550000}\r\n"
2100 "{product_name:RE450,product_ver:1.0.0,special_id:4A500000}\r\n"
2101 "{product_name:RE450,product_ver:1.0.0,special_id:43410000}\r\n"
2102 "{product_name:RE450,product_ver:1.0.0,special_id:41550000}\r\n"
2103 "{product_name:RE450,product_ver:1.0.0,special_id:4B520000}\r\n"
2104 "{product_name:RE450,product_ver:1.0.0,special_id:55534100}\r\n",
2105 .support_trail
= '\x00',
2108 /** We're using a dynamic kernel/rootfs split here */
2110 {"fs-uboot", 0x00000, 0x20000},
2111 {"firmware", 0x20000, 0x5e0000},
2112 {"partition-table", 0x600000, 0x02000},
2113 {"default-mac", 0x610000, 0x00020},
2114 {"pin", 0x610100, 0x00020},
2115 {"product-info", 0x611100, 0x01000},
2116 {"soft-version", 0x620000, 0x01000},
2117 {"support-list", 0x621000, 0x01000},
2118 {"profile", 0x622000, 0x08000},
2119 {"user-config", 0x630000, 0x10000},
2120 {"default-config", 0x640000, 0x10000},
2121 {"radio", 0x7f0000, 0x10000},
2125 .first_sysupgrade_partition
= "os-image",
2126 .last_sysupgrade_partition
= "file-system"
2129 /** Firmware layout for the RE450 v2 */
2135 "{product_name:RE450,product_ver:2.0.0,special_id:00000000}\r\n"
2136 "{product_name:RE450,product_ver:2.0.0,special_id:55530000}\r\n"
2137 "{product_name:RE450,product_ver:2.0.0,special_id:45550000}\r\n"
2138 "{product_name:RE450,product_ver:2.0.0,special_id:4A500000}\r\n"
2139 "{product_name:RE450,product_ver:2.0.0,special_id:43410000}\r\n"
2140 "{product_name:RE450,product_ver:2.0.0,special_id:41550000}\r\n"
2141 "{product_name:RE450,product_ver:2.0.0,special_id:41530000}\r\n"
2142 "{product_name:RE450,product_ver:2.0.0,special_id:4B520000}\r\n"
2143 "{product_name:RE450,product_ver:2.0.0,special_id:42520000}\r\n",
2144 .support_trail
= '\x00',
2147 /* We're using a dynamic kernel/rootfs split here */
2149 {"fs-uboot", 0x00000, 0x20000},
2150 {"firmware", 0x20000, 0x5e0000},
2151 {"partition-table", 0x600000, 0x02000},
2152 {"default-mac", 0x610000, 0x00020},
2153 {"pin", 0x610100, 0x00020},
2154 {"product-info", 0x611100, 0x01000},
2155 {"soft-version", 0x620000, 0x01000},
2156 {"support-list", 0x621000, 0x01000},
2157 {"profile", 0x622000, 0x08000},
2158 {"user-config", 0x630000, 0x10000},
2159 {"default-config", 0x640000, 0x10000},
2160 {"radio", 0x7f0000, 0x10000},
2164 .first_sysupgrade_partition
= "os-image",
2165 .last_sysupgrade_partition
= "file-system"
2168 /** Firmware layout for the RE450 v3 */
2174 "{product_name:RE450,product_ver:3.0.0,special_id:00000000}\r\n"
2175 "{product_name:RE450,product_ver:3.0.0,special_id:55530000}\r\n"
2176 "{product_name:RE450,product_ver:3.0.0,special_id:45550000}\r\n"
2177 "{product_name:RE450,product_ver:3.0.0,special_id:4A500000}\r\n"
2178 "{product_name:RE450,product_ver:3.0.0,special_id:43410000}\r\n"
2179 "{product_name:RE450,product_ver:3.0.0,special_id:41550000}\r\n"
2180 "{product_name:RE450,product_ver:3.0.0,special_id:41530000}\r\n"
2181 "{product_name:RE450,product_ver:3.0.0,special_id:4B520000}\r\n"
2182 "{product_name:RE450,product_ver:3.0.0,special_id:42520000}\r\n",
2183 .support_trail
= '\x00',
2186 /* We're using a dynamic kernel/rootfs split here */
2188 {"fs-uboot", 0x00000, 0x20000},
2189 {"default-mac", 0x20000, 0x00020},
2190 {"pin", 0x20020, 0x00020},
2191 {"product-info", 0x21000, 0x01000},
2192 {"partition-table", 0x22000, 0x02000},
2193 {"soft-version", 0x24000, 0x01000},
2194 {"support-list", 0x25000, 0x01000},
2195 {"profile", 0x26000, 0x08000},
2196 {"user-config", 0x2e000, 0x10000},
2197 {"default-config", 0x3e000, 0x10000},
2198 {"config-info", 0x4e000, 0x00400},
2199 {"firmware", 0x50000, 0x7a0000},
2200 {"radio", 0x7f0000, 0x10000},
2204 .first_sysupgrade_partition
= "os-image",
2205 .last_sysupgrade_partition
= "file-system"
2208 /** Firmware layout for the RE500 */
2214 "{product_name:RE500,product_ver:1.0.0,special_id:00000000}\r\n"
2215 "{product_name:RE500,product_ver:1.0.0,special_id:55530000}\r\n"
2216 "{product_name:RE500,product_ver:1.0.0,special_id:45550000}\r\n"
2217 "{product_name:RE500,product_ver:1.0.0,special_id:4A500000}\r\n"
2218 "{product_name:RE500,product_ver:1.0.0,special_id:43410000}\r\n"
2219 "{product_name:RE500,product_ver:1.0.0,special_id:41550000}\r\n"
2220 "{product_name:RE500,product_ver:1.0.0,special_id:41530000}\r\n",
2221 .support_trail
= '\x00',
2224 /* We're using a dynamic kernel/rootfs split here */
2226 {"fs-uboot", 0x00000, 0x20000},
2227 {"firmware", 0x20000, 0xde0000},
2228 {"partition-table", 0xe00000, 0x02000},
2229 {"default-mac", 0xe10000, 0x00020},
2230 {"pin", 0xe10100, 0x00020},
2231 {"product-info", 0xe11100, 0x01000},
2232 {"soft-version", 0xe20000, 0x01000},
2233 {"support-list", 0xe21000, 0x01000},
2234 {"profile", 0xe22000, 0x08000},
2235 {"user-config", 0xe30000, 0x10000},
2236 {"default-config", 0xe40000, 0x10000},
2237 {"radio", 0xff0000, 0x10000},
2241 .first_sysupgrade_partition
= "os-image",
2242 .last_sysupgrade_partition
= "file-system"
2245 /** Firmware layout for the RE650 */
2251 "{product_name:RE650,product_ver:1.0.0,special_id:00000000}\r\n"
2252 "{product_name:RE650,product_ver:1.0.0,special_id:55530000}\r\n"
2253 "{product_name:RE650,product_ver:1.0.0,special_id:45550000}\r\n"
2254 "{product_name:RE650,product_ver:1.0.0,special_id:4A500000}\r\n"
2255 "{product_name:RE650,product_ver:1.0.0,special_id:43410000}\r\n"
2256 "{product_name:RE650,product_ver:1.0.0,special_id:41550000}\r\n"
2257 "{product_name:RE650,product_ver:1.0.0,special_id:41530000}\r\n",
2258 .support_trail
= '\x00',
2261 /* We're using a dynamic kernel/rootfs split here */
2263 {"fs-uboot", 0x00000, 0x20000},
2264 {"firmware", 0x20000, 0xde0000},
2265 {"partition-table", 0xe00000, 0x02000},
2266 {"default-mac", 0xe10000, 0x00020},
2267 {"pin", 0xe10100, 0x00020},
2268 {"product-info", 0xe11100, 0x01000},
2269 {"soft-version", 0xe20000, 0x01000},
2270 {"support-list", 0xe21000, 0x01000},
2271 {"profile", 0xe22000, 0x08000},
2272 {"user-config", 0xe30000, 0x10000},
2273 {"default-config", 0xe40000, 0x10000},
2274 {"radio", 0xff0000, 0x10000},
2278 .first_sysupgrade_partition
= "os-image",
2279 .last_sysupgrade_partition
= "file-system"
2285 #define error(_ret, _errno, _str, ...) \
2287 fprintf(stderr, _str ": %s\n", ## __VA_ARGS__, \
2288 strerror(_errno)); \
2294 /** Stores a uint32 as big endian */
2295 static inline void put32(uint8_t *buf
, uint32_t val
) {
2302 /** Allocates a new image partition */
2303 static struct image_partition_entry
alloc_image_partition(const char *name
, size_t len
) {
2304 struct image_partition_entry entry
= {name
, len
, malloc(len
)};
2306 error(1, errno
, "malloc");
2311 /** Frees an image partition */
2312 static void free_image_partition(struct image_partition_entry entry
) {
2316 static time_t source_date_epoch
= -1;
2317 static void set_source_date_epoch() {
2318 char *env
= getenv("SOURCE_DATE_EPOCH");
2322 source_date_epoch
= strtoull(env
, &endptr
, 10);
2323 if (errno
|| (endptr
&& *endptr
!= '\0')) {
2324 fprintf(stderr
, "Invalid SOURCE_DATE_EPOCH");
2330 /** Generates the partition-table partition */
2331 static struct image_partition_entry
make_partition_table(const struct flash_partition_entry
*p
) {
2332 struct image_partition_entry entry
= alloc_image_partition("partition-table", 0x800);
2334 char *s
= (char *)entry
.data
, *end
= (char *)(s
+entry
.size
);
2342 for (i
= 0; p
[i
].name
; i
++) {
2344 size_t w
= snprintf(s
, len
, "partition %s base 0x%05x size 0x%05x\n", p
[i
].name
, p
[i
].base
, p
[i
].size
);
2347 error(1, 0, "flash partition table overflow?");
2354 memset(s
, 0xff, end
-s
);
2360 /** Generates a binary-coded decimal representation of an integer in the range [0, 99] */
2361 static inline uint8_t bcd(uint8_t v
) {
2362 return 0x10 * (v
/10) + v
%10;
2366 /** Generates the soft-version partition */
2367 static struct image_partition_entry
make_soft_version(struct device_info
*info
, uint32_t rev
) {
2368 size_t part_len
= sizeof(struct soft_version
);
2369 if (info
->soft_ver_compat_level
> 0)
2370 part_len
+= sizeof(uint32_t);
2372 struct image_partition_entry entry
=
2373 alloc_image_partition("soft-version", part_len
+1);
2374 struct soft_version
*s
= (struct soft_version
*)entry
.data
;
2378 if (source_date_epoch
!= -1)
2379 t
= source_date_epoch
;
2380 else if (time(&t
) == (time_t)(-1))
2381 error(1, errno
, "time");
2383 struct tm
*tm
= gmtime(&t
);
2385 /* Partition contents size, minus 8 byte header and trailing byte */
2386 s
->data_len
= htonl(entry
.size
-9);
2390 s
->version_major
= 0;
2391 s
->version_minor
= 0;
2392 s
->version_patch
= 0;
2394 s
->year_hi
= bcd((1900+tm
->tm_year
)/100);
2395 s
->year_lo
= bcd(tm
->tm_year
%100);
2396 s
->month
= bcd(tm
->tm_mon
+1);
2397 s
->day
= bcd(tm
->tm_mday
);
2398 s
->rev
= htonl(rev
);
2400 if (info
->soft_ver_compat_level
> 0)
2401 *(uint32_t *)(entry
.data
+ sizeof(struct soft_version
)) =
2402 htonl(info
->soft_ver_compat_level
);
2404 entry
.data
[entry
.size
-1] = 0xff;
2409 static struct image_partition_entry
make_soft_version_from_string(const char *soft_ver
) {
2410 /** String length _including_ the terminating zero byte */
2411 uint32_t ver_len
= strlen(soft_ver
) + 1;
2412 /** Partition contains 64 bit header, the version string, and one additional null byte */
2413 size_t partition_len
= 2*sizeof(uint32_t) + ver_len
+ 1;
2414 struct image_partition_entry entry
= alloc_image_partition("soft-version", partition_len
);
2416 uint32_t *len
= (uint32_t *)entry
.data
;
2417 len
[0] = htonl(ver_len
);
2419 memcpy(&len
[2], soft_ver
, ver_len
);
2421 entry
.data
[partition_len
- 1] = 0;
2426 /** Generates the support-list partition */
2427 static struct image_partition_entry
make_support_list(struct device_info
*info
) {
2428 size_t len
= strlen(info
->support_list
);
2429 struct image_partition_entry entry
= alloc_image_partition("support-list", len
+ 9);
2431 put32(entry
.data
, len
);
2432 memset(entry
.data
+4, 0, 4);
2433 memcpy(entry
.data
+8, info
->support_list
, len
);
2434 entry
.data
[len
+8] = info
->support_trail
;
2439 /** Creates a new image partition with an arbitrary name from a file */
2440 static struct image_partition_entry
read_file(const char *part_name
, const char *filename
, bool add_jffs2_eof
, struct flash_partition_entry
*file_system_partition
) {
2441 struct stat statbuf
;
2443 if (stat(filename
, &statbuf
) < 0)
2444 error(1, errno
, "unable to stat file `%s'", filename
);
2446 size_t len
= statbuf
.st_size
;
2448 if (add_jffs2_eof
) {
2449 if (file_system_partition
)
2450 len
= ALIGN(len
+ file_system_partition
->base
, 0x10000) + sizeof(jffs2_eof_mark
) - file_system_partition
->base
;
2452 len
= ALIGN(len
, 0x10000) + sizeof(jffs2_eof_mark
);
2455 struct image_partition_entry entry
= alloc_image_partition(part_name
, len
);
2457 FILE *file
= fopen(filename
, "rb");
2459 error(1, errno
, "unable to open file `%s'", filename
);
2461 if (fread(entry
.data
, statbuf
.st_size
, 1, file
) != 1)
2462 error(1, errno
, "unable to read file `%s'", filename
);
2464 if (add_jffs2_eof
) {
2465 uint8_t *eof
= entry
.data
+ statbuf
.st_size
, *end
= entry
.data
+entry
.size
;
2467 memset(eof
, 0xff, end
- eof
- sizeof(jffs2_eof_mark
));
2468 memcpy(end
- sizeof(jffs2_eof_mark
), jffs2_eof_mark
, sizeof(jffs2_eof_mark
));
2476 /** Creates a new image partition from arbitrary data */
2477 static struct image_partition_entry
put_data(const char *part_name
, const char *datain
, size_t len
) {
2479 struct image_partition_entry entry
= alloc_image_partition(part_name
, len
);
2481 memcpy(entry
.data
, datain
, len
);
2487 Copies a list of image partitions into an image buffer and generates the image partition table while doing so
2489 Example image partition table:
2491 fwup-ptn partition-table base 0x00800 size 0x00800
2492 fwup-ptn os-image base 0x01000 size 0x113b45
2493 fwup-ptn file-system base 0x114b45 size 0x1d0004
2494 fwup-ptn support-list base 0x2e4b49 size 0x000d1
2496 Each line of the partition table is terminated with the bytes 09 0d 0a ("\t\r\n"),
2497 the end of the partition table is marked with a zero byte.
2499 The firmware image must contain at least the partition-table and support-list partitions
2500 to be accepted. There aren't any alignment constraints for the image partitions.
2502 The partition-table partition contains the actual flash layout; partitions
2503 from the image partition table are mapped to the corresponding flash partitions during
2504 the firmware upgrade. The support-list partition contains a list of devices supported by
2507 The base offsets in the firmware partition table are relative to the end
2508 of the vendor information block, so the partition-table partition will
2509 actually start at offset 0x1814 of the image.
2511 I think partition-table must be the first partition in the firmware image.
2513 static void put_partitions(uint8_t *buffer
, const struct flash_partition_entry
*flash_parts
, const struct image_partition_entry
*parts
) {
2515 char *image_pt
= (char *)buffer
, *end
= image_pt
+ 0x800;
2517 size_t base
= 0x800;
2518 for (i
= 0; parts
[i
].name
; i
++) {
2519 for (j
= 0; flash_parts
[j
].name
; j
++) {
2520 if (!strcmp(flash_parts
[j
].name
, parts
[i
].name
)) {
2521 if (parts
[i
].size
> flash_parts
[j
].size
)
2522 error(1, 0, "%s partition too big (more than %u bytes)", flash_parts
[j
].name
, (unsigned)flash_parts
[j
].size
);
2527 assert(flash_parts
[j
].name
);
2529 memcpy(buffer
+ base
, parts
[i
].data
, parts
[i
].size
);
2531 size_t len
= end
-image_pt
;
2532 size_t w
= snprintf(image_pt
, len
, "fwup-ptn %s base 0x%05x size 0x%05x\t\r\n", parts
[i
].name
, (unsigned)base
, (unsigned)parts
[i
].size
);
2535 error(1, 0, "image partition table overflow?");
2539 base
+= parts
[i
].size
;
2543 /** Generates and writes the image MD5 checksum */
2544 static void put_md5(uint8_t *md5
, uint8_t *buffer
, unsigned int len
) {
2548 MD5_Update(&ctx
, md5_salt
, (unsigned int)sizeof(md5_salt
));
2549 MD5_Update(&ctx
, buffer
, len
);
2550 MD5_Final(md5
, &ctx
);
2555 Generates the firmware image in factory format
2561 0000-0003 Image size (4 bytes, big endian)
2562 0004-0013 MD5 hash (hash of a 16 byte salt and the image data starting with byte 0x14)
2563 0014-0017 Vendor information length (without padding) (4 bytes, big endian)
2564 0018-1013 Vendor information (4092 bytes, padded with 0xff; there seem to be older
2565 (VxWorks-based) TP-LINK devices which use a smaller vendor information block)
2566 1014-1813 Image partition table (2048 bytes, padded with 0xff)
2567 1814-xxxx Firmware partitions
2569 static void * generate_factory_image(struct device_info
*info
, const struct image_partition_entry
*parts
, size_t *len
) {
2573 for (i
= 0; parts
[i
].name
; i
++)
2574 *len
+= parts
[i
].size
;
2576 uint8_t *image
= malloc(*len
);
2578 error(1, errno
, "malloc");
2580 memset(image
, 0xff, *len
);
2584 size_t vendor_len
= strlen(info
->vendor
);
2585 put32(image
+0x14, vendor_len
);
2586 memcpy(image
+0x18, info
->vendor
, vendor_len
);
2589 put_partitions(image
+ 0x1014, info
->partitions
, parts
);
2590 put_md5(image
+0x04, image
+0x14, *len
-0x14);
2596 Generates the firmware image in sysupgrade format
2598 This makes some assumptions about the provided flash and image partition tables and
2599 should be generalized when TP-LINK starts building its safeloader into hardware with
2600 different flash layouts.
2602 static void * generate_sysupgrade_image(struct device_info
*info
, const struct image_partition_entry
*image_parts
, size_t *len
) {
2604 size_t flash_first_partition_index
= 0;
2605 size_t flash_last_partition_index
= 0;
2606 const struct flash_partition_entry
*flash_first_partition
= NULL
;
2607 const struct flash_partition_entry
*flash_last_partition
= NULL
;
2608 const struct image_partition_entry
*image_last_partition
= NULL
;
2610 /** Find first and last partitions */
2611 for (i
= 0; info
->partitions
[i
].name
; i
++) {
2612 if (!strcmp(info
->partitions
[i
].name
, info
->first_sysupgrade_partition
)) {
2613 flash_first_partition
= &info
->partitions
[i
];
2614 flash_first_partition_index
= i
;
2615 } else if (!strcmp(info
->partitions
[i
].name
, info
->last_sysupgrade_partition
)) {
2616 flash_last_partition
= &info
->partitions
[i
];
2617 flash_last_partition_index
= i
;
2621 assert(flash_first_partition
&& flash_last_partition
);
2622 assert(flash_first_partition_index
< flash_last_partition_index
);
2624 /** Find last partition from image to calculate needed size */
2625 for (i
= 0; image_parts
[i
].name
; i
++) {
2626 if (!strcmp(image_parts
[i
].name
, info
->last_sysupgrade_partition
)) {
2627 image_last_partition
= &image_parts
[i
];
2632 assert(image_last_partition
);
2634 *len
= flash_last_partition
->base
- flash_first_partition
->base
+ image_last_partition
->size
;
2636 uint8_t *image
= malloc(*len
);
2638 error(1, errno
, "malloc");
2640 memset(image
, 0xff, *len
);
2642 for (i
= flash_first_partition_index
; i
<= flash_last_partition_index
; i
++) {
2643 for (j
= 0; image_parts
[j
].name
; j
++) {
2644 if (!strcmp(info
->partitions
[i
].name
, image_parts
[j
].name
)) {
2645 if (image_parts
[j
].size
> info
->partitions
[i
].size
)
2646 error(1, 0, "%s partition too big (more than %u bytes)", info
->partitions
[i
].name
, (unsigned)info
->partitions
[i
].size
);
2647 memcpy(image
+ info
->partitions
[i
].base
- flash_first_partition
->base
, image_parts
[j
].data
, image_parts
[j
].size
);
2651 assert(image_parts
[j
].name
);
2658 /** Generates an image according to a given layout and writes it to a file */
2659 static void build_image(const char *output
,
2660 const char *kernel_image
,
2661 const char *rootfs_image
,
2665 struct device_info
*info
) {
2669 struct image_partition_entry parts
[7] = {};
2671 struct flash_partition_entry
*firmware_partition
= NULL
;
2672 struct flash_partition_entry
*os_image_partition
= NULL
;
2673 struct flash_partition_entry
*file_system_partition
= NULL
;
2674 size_t firmware_partition_index
= 0;
2676 for (i
= 0; info
->partitions
[i
].name
; i
++) {
2677 if (!strcmp(info
->partitions
[i
].name
, "firmware"))
2679 firmware_partition
= &info
->partitions
[i
];
2680 firmware_partition_index
= i
;
2684 if (firmware_partition
)
2686 os_image_partition
= &info
->partitions
[firmware_partition_index
];
2687 file_system_partition
= &info
->partitions
[firmware_partition_index
+ 1];
2690 if (stat(kernel_image
, &kernel
) < 0)
2691 error(1, errno
, "unable to stat file `%s'", kernel_image
);
2693 if (kernel
.st_size
> firmware_partition
->size
)
2694 error(1, 0, "kernel overflowed firmware partition\n");
2696 for (i
= MAX_PARTITIONS
-1; i
>= firmware_partition_index
+ 1; i
--)
2697 info
->partitions
[i
+1] = info
->partitions
[i
];
2699 file_system_partition
->name
= "file-system";
2700 file_system_partition
->base
= firmware_partition
->base
+ kernel
.st_size
;
2702 /* Align partition start to erase blocks for factory images only */
2704 file_system_partition
->base
= ALIGN(firmware_partition
->base
+ kernel
.st_size
, 0x10000);
2706 file_system_partition
->size
= firmware_partition
->size
- file_system_partition
->base
;
2708 os_image_partition
->name
= "os-image";
2709 os_image_partition
->size
= kernel
.st_size
;
2712 parts
[0] = make_partition_table(info
->partitions
);
2714 parts
[1] = make_soft_version_from_string(info
->soft_ver
);
2716 parts
[1] = make_soft_version(info
, rev
);
2718 parts
[2] = make_support_list(info
);
2719 parts
[3] = read_file("os-image", kernel_image
, false, NULL
);
2720 parts
[4] = read_file("file-system", rootfs_image
, add_jffs2_eof
, file_system_partition
);
2722 /* Some devices need the extra-para partition to accept the firmware */
2723 if (strcasecmp(info
->id
, "ARCHER-C2-V3") == 0 ||
2724 strcasecmp(info
->id
, "ARCHER-C25-V1") == 0 ||
2725 strcasecmp(info
->id
, "ARCHER-C59-V2") == 0 ||
2726 strcasecmp(info
->id
, "ARCHER-C60-V2") == 0 ||
2727 strcasecmp(info
->id
, "ARCHER-C60-V3") == 0 ||
2728 strcasecmp(info
->id
, "TLWR1043NV5") == 0) {
2729 const char mdat
[11] = {0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00};
2730 parts
[5] = put_data("extra-para", mdat
, 11);
2731 } else if (strcasecmp(info
->id
, "ARCHER-A7-V5") == 0 || strcasecmp(info
->id
, "ARCHER-C7-V4") == 0 || strcasecmp(info
->id
, "ARCHER-C7-V5") == 0) {
2732 const char mdat
[11] = {0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0xca, 0x00, 0x01, 0x00, 0x00};
2733 parts
[5] = put_data("extra-para", mdat
, 11);
2734 } else if (strcasecmp(info
->id
, "ARCHER-C6-V2") == 0) {
2735 const char mdat
[11] = {0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00};
2736 parts
[5] = put_data("extra-para", mdat
, 11);
2737 } else if (strcasecmp(info
->id
, "ARCHER-C6-V2-US") == 0) {
2738 const char mdat
[11] = {0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00};
2739 parts
[5] = put_data("extra-para", mdat
, 11);
2740 } else if (strcasecmp(info
->id
, "EAP245-V3") == 0) {
2741 const char mdat
[10] = {0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01};
2742 parts
[5] = put_data("extra-para", mdat
, 10);
2748 image
= generate_sysupgrade_image(info
, parts
, &len
);
2750 image
= generate_factory_image(info
, parts
, &len
);
2752 FILE *file
= fopen(output
, "wb");
2754 error(1, errno
, "unable to open output file");
2756 if (fwrite(image
, len
, 1, file
) != 1)
2757 error(1, 0, "unable to write output file");
2763 for (i
= 0; parts
[i
].name
; i
++)
2764 free_image_partition(parts
[i
]);
2768 static void usage(const char *argv0
) {
2770 "Usage: %s [OPTIONS...]\n"
2773 " -h show this help\n"
2775 "Create a new image:\n"
2776 " -B <board> create image for the board specified with <board>\n"
2777 " -k <file> read kernel image from the file <file>\n"
2778 " -r <file> read rootfs image from the file <file>\n"
2779 " -o <file> write output to the file <file>\n"
2780 " -V <rev> sets the revision number to <rev>\n"
2781 " -j add jffs2 end-of-filesystem markers\n"
2782 " -S create sysupgrade instead of factory image\n"
2783 "Extract an old image:\n"
2784 " -x <file> extract all oem firmware partition\n"
2785 " -d <dir> destination to extract the firmware partition\n"
2786 " -z <file> convert an oem firmware into a sysupgade file. Use -o for output file\n",
2792 static struct device_info
*find_board(const char *id
)
2794 struct device_info
*board
= NULL
;
2796 for (board
= boards
; board
->id
!= NULL
; board
++)
2797 if (strcasecmp(id
, board
->id
) == 0)
2803 static int add_flash_partition(
2804 struct flash_partition_entry
*part_list
,
2811 /* check if the list has a free entry */
2812 for (ptr
= 0; ptr
< max_entries
; ptr
++, part_list
++) {
2813 if (part_list
->name
== NULL
&&
2814 part_list
->base
== 0 &&
2815 part_list
->size
== 0)
2819 if (ptr
== max_entries
) {
2820 error(1, 0, "No free flash part entry available.");
2823 part_list
->name
= calloc(1, strlen(name
) + 1);
2824 if (!part_list
->name
) {
2825 error(1, 0, "Unable to allocate memory");
2828 memcpy((char *)part_list
->name
, name
, strlen(name
));
2829 part_list
->base
= base
;
2830 part_list
->size
= size
;
2835 /** read the partition table into struct flash_partition_entry */
2836 static int read_partition_table(
2837 FILE *file
, long offset
,
2838 struct flash_partition_entry
*entries
, size_t max_entries
,
2843 const char *parthdr
= NULL
;
2844 const char *fwuphdr
= "fwup-ptn";
2845 const char *flashhdr
= "partition";
2847 /* TODO: search for the partition table */
2857 error(1, 0, "Invalid partition table");
2860 if (fseek(file
, offset
, SEEK_SET
) < 0)
2861 error(1, errno
, "Can not seek in the firmware");
2863 if (fread(buf
, 2048, 1, file
) != 1)
2864 error(1, errno
, "Can not read fwup-ptn from the firmware");
2868 /* look for the partition header */
2869 if (memcmp(buf
, parthdr
, strlen(parthdr
)) != 0) {
2870 fprintf(stderr
, "DEBUG: can not find fwuphdr\n");
2875 end
= buf
+ sizeof(buf
);
2876 while ((ptr
+ strlen(parthdr
)) < end
&&
2877 memcmp(ptr
, parthdr
, strlen(parthdr
)) == 0) {
2881 char name
[32] = { 0 };
2883 unsigned long base
= 0;
2884 unsigned long size
= 0;
2886 end_part
= memchr(ptr
, '\n', (end
- ptr
));
2887 if (end_part
== NULL
) {
2888 /* in theory this should never happen, because a partition always ends with 0x09, 0x0D, 0x0A */
2892 for (int i
= 0; i
<= 4; i
++) {
2893 if (end_part
<= ptr
)
2896 end_element
= memchr(ptr
, 0x20, (end_part
- ptr
));
2897 if (end_element
== NULL
) {
2898 error(1, errno
, "Ignoring the rest of the partition entries.");
2903 /* partition header */
2905 ptr
= end_element
+ 1;
2909 name_len
= (end_element
- ptr
) > 31 ? 31 : (end_element
- ptr
);
2910 strncpy(name
, ptr
, name_len
);
2911 name
[name_len
] = '\0';
2912 ptr
= end_element
+ 1;
2917 ptr
= end_element
+ 1;
2922 base
= strtoul(ptr
, NULL
, 16);
2923 ptr
= end_element
+ 1;
2928 ptr
= end_element
+ 1;
2929 /* actual size. The last element doesn't have a sepeartor */
2930 size
= strtoul(ptr
, NULL
, 16);
2931 /* the part ends with 0x09, 0x0d, 0x0a */
2933 add_flash_partition(entries
, max_entries
, name
, base
, size
);
2942 static void write_partition(
2944 size_t firmware_offset
,
2945 struct flash_partition_entry
*entry
,
2951 fseek(input_file
, entry
->base
+ firmware_offset
, SEEK_SET
);
2953 for (offset
= 0; sizeof(buf
) + offset
<= entry
->size
; offset
+= sizeof(buf
)) {
2954 if (fread(buf
, sizeof(buf
), 1, input_file
) != 1)
2955 error(1, errno
, "Can not read partition from input_file");
2957 if (fwrite(buf
, sizeof(buf
), 1, output_file
) != 1)
2958 error(1, errno
, "Can not write partition to output_file");
2960 /* write last chunk smaller than buffer */
2961 if (offset
< entry
->size
) {
2962 offset
= entry
->size
- offset
;
2963 if (fread(buf
, offset
, 1, input_file
) != 1)
2964 error(1, errno
, "Can not read partition from input_file");
2965 if (fwrite(buf
, offset
, 1, output_file
) != 1)
2966 error(1, errno
, "Can not write partition to output_file");
2970 static int extract_firmware_partition(FILE *input_file
, size_t firmware_offset
, struct flash_partition_entry
*entry
, const char *output_directory
)
2973 char output
[PATH_MAX
];
2975 snprintf(output
, PATH_MAX
, "%s/%s", output_directory
, entry
->name
);
2976 output_file
= fopen(output
, "wb+");
2977 if (output_file
== NULL
) {
2978 error(1, errno
, "Can not open output file %s", output
);
2981 write_partition(input_file
, firmware_offset
, entry
, output_file
);
2983 fclose(output_file
);
2988 /** extract all partitions from the firmware file */
2989 static int extract_firmware(const char *input
, const char *output_directory
)
2991 struct flash_partition_entry entries
[16] = { 0 };
2992 size_t max_entries
= 16;
2993 size_t firmware_offset
= 0x1014;
2996 struct stat statbuf
;
2998 /* check input file */
2999 if (stat(input
, &statbuf
)) {
3000 error(1, errno
, "Can not read input firmware %s", input
);
3003 /* check if output directory exists */
3004 if (stat(output_directory
, &statbuf
)) {
3005 error(1, errno
, "Failed to stat output directory %s", output_directory
);
3008 if ((statbuf
.st_mode
& S_IFMT
) != S_IFDIR
) {
3009 error(1, errno
, "Given output directory is not a directory %s", output_directory
);
3012 input_file
= fopen(input
, "rb");
3014 if (read_partition_table(input_file
, firmware_offset
, entries
, 16, 0) != 0) {
3015 error(1, 0, "Error can not read the partition table (fwup-ptn)");
3018 for (size_t i
= 0; i
< max_entries
; i
++) {
3019 if (entries
[i
].name
== NULL
&&
3020 entries
[i
].base
== 0 &&
3021 entries
[i
].size
== 0)
3024 extract_firmware_partition(input_file
, firmware_offset
, &entries
[i
], output_directory
);
3030 static struct flash_partition_entry
*find_partition(
3031 struct flash_partition_entry
*entries
, size_t max_entries
,
3032 const char *name
, const char *error_msg
)
3034 for (size_t i
= 0; i
< max_entries
; i
++, entries
++) {
3035 if (strcmp(entries
->name
, name
) == 0)
3039 error(1, 0, "%s", error_msg
);
3043 static void write_ff(FILE *output_file
, size_t size
)
3048 memset(buf
, 0xff, sizeof(buf
));
3050 for (offset
= 0; offset
+ sizeof(buf
) < size
; offset
+= sizeof(buf
)) {
3051 if (fwrite(buf
, sizeof(buf
), 1, output_file
) != 1)
3052 error(1, errno
, "Can not write 0xff to output_file");
3055 /* write last chunk smaller than buffer */
3056 if (offset
< size
) {
3057 offset
= size
- offset
;
3058 if (fwrite(buf
, offset
, 1, output_file
) != 1)
3059 error(1, errno
, "Can not write partition to output_file");
3063 static void convert_firmware(const char *input
, const char *output
)
3065 struct flash_partition_entry fwup
[MAX_PARTITIONS
] = { 0 };
3066 struct flash_partition_entry flash
[MAX_PARTITIONS
] = { 0 };
3067 struct flash_partition_entry
*fwup_os_image
= NULL
, *fwup_file_system
= NULL
;
3068 struct flash_partition_entry
*flash_os_image
= NULL
, *flash_file_system
= NULL
;
3069 struct flash_partition_entry
*fwup_partition_table
= NULL
;
3070 size_t firmware_offset
= 0x1014;
3071 FILE *input_file
, *output_file
;
3073 struct stat statbuf
;
3075 /* check input file */
3076 if (stat(input
, &statbuf
)) {
3077 error(1, errno
, "Can not read input firmware %s", input
);
3080 input_file
= fopen(input
, "rb");
3082 error(1, 0, "Can not open input firmware %s", input
);
3084 output_file
= fopen(output
, "wb");
3086 error(1, 0, "Can not open output firmware %s", output
);
3088 if (read_partition_table(input_file
, firmware_offset
, fwup
, MAX_PARTITIONS
, 0) != 0) {
3089 error(1, 0, "Error can not read the partition table (fwup-ptn)");
3092 fwup_os_image
= find_partition(fwup
, MAX_PARTITIONS
,
3093 "os-image", "Error can not find os-image partition (fwup)");
3094 fwup_file_system
= find_partition(fwup
, MAX_PARTITIONS
,
3095 "file-system", "Error can not find file-system partition (fwup)");
3096 fwup_partition_table
= find_partition(fwup
, MAX_PARTITIONS
,
3097 "partition-table", "Error can not find partition-table partition");
3099 /* the flash partition table has a 0x00000004 magic haeder */
3100 if (read_partition_table(input_file
, firmware_offset
+ fwup_partition_table
->base
+ 4, flash
, MAX_PARTITIONS
, 1) != 0)
3101 error(1, 0, "Error can not read the partition table (flash)");
3103 flash_os_image
= find_partition(flash
, MAX_PARTITIONS
,
3104 "os-image", "Error can not find os-image partition (flash)");
3105 flash_file_system
= find_partition(flash
, MAX_PARTITIONS
,
3106 "file-system", "Error can not find file-system partition (flash)");
3108 /* write os_image to 0x0 */
3109 write_partition(input_file
, firmware_offset
, fwup_os_image
, output_file
);
3110 write_ff(output_file
, flash_os_image
->size
- fwup_os_image
->size
);
3112 /* write file-system behind os_image */
3113 fseek(output_file
, flash_file_system
->base
- flash_os_image
->base
, SEEK_SET
);
3114 write_partition(input_file
, firmware_offset
, fwup_file_system
, output_file
);
3115 write_ff(output_file
, flash_file_system
->size
- fwup_file_system
->size
);
3117 fclose(output_file
);
3121 int main(int argc
, char *argv
[]) {
3122 const char *board
= NULL
, *kernel_image
= NULL
, *rootfs_image
= NULL
, *output
= NULL
;
3123 const char *extract_image
= NULL
, *output_directory
= NULL
, *convert_image
= NULL
;
3124 bool add_jffs2_eof
= false, sysupgrade
= false;
3126 struct device_info
*info
;
3127 set_source_date_epoch();
3132 c
= getopt(argc
, argv
, "B:k:r:o:V:jSh:x:d:z:");
3142 kernel_image
= optarg
;
3146 rootfs_image
= optarg
;
3154 sscanf(optarg
, "r%u", &rev
);
3158 add_jffs2_eof
= true;
3170 output_directory
= optarg
;
3174 extract_image
= optarg
;
3178 convert_image
= optarg
;
3187 if (extract_image
|| output_directory
) {
3189 error(1, 0, "No factory/oem image given via -x <file>. Output directory is only valid with -x");
3190 if (!output_directory
)
3191 error(1, 0, "Can not extract an image without output directory. Use -d <dir>");
3192 extract_firmware(extract_image
, output_directory
);
3193 } else if (convert_image
) {
3195 error(1, 0, "Can not convert a factory/oem image into sysupgrade image without output file. Use -o <file>");
3196 convert_firmware(convert_image
, output
);
3199 error(1, 0, "no board has been specified");
3201 error(1, 0, "no kernel image has been specified");
3203 error(1, 0, "no rootfs image has been specified");
3205 error(1, 0, "no output filename has been specified");
3207 info
= find_board(board
);
3210 error(1, 0, "unsupported board %s", board
);
3212 build_image(output
, kernel_image
, rootfs_image
, rev
, add_jffs2_eof
, sysupgrade
, info
);