Skip to content

Commit

Permalink
firmware-utils: mktplinkfw: fix JFFS2 EOF markers
Browse files Browse the repository at this point in the history
mktplinkfw/mktplinkfw2 utilities put JFFS2 EOF market only at 64KB
boundary, this could lead to current device configuration lost during
the sysupgrade on a device, which is equpped with flash with the 4KB
erase block size (e.g. TP-Link Archer C20).

This happens when 64KB and 4KB alignments do not match, so the JFFS2
data is written not exactly at the partition beginnig and startup
scripts can not find the JFFS2 during the first boot just after the
sysupgrade.

Fix this by placing additional JFFS2 EOF marker at a 4KB boundary. Also
keep the marker at 64KB intact, so the utilities will produce images
suitable for devices with both 4KB and 64KB erase blocks.

Fixes: 29a2c2e (add ability to put
jffs2 eof marker into the image)

Signed-off-by: Sergey Ryazanov <[email protected]>
  • Loading branch information
rsa9000 authored and blogic committed Dec 14, 2017
1 parent 4d8a8c8 commit 1a51241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/firmware-utils/src/mktplinkfw-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int pad_jffs2(char *buf, int currlen, int maxlen)
uint32_t pad_mask;

len = currlen;
pad_mask = (64 * 1024);
pad_mask = (4 * 1024) | (64 * 1024); /* EOF at 4KB and at 64KB */
while ((len < maxlen) && (pad_mask != 0)) {
uint32_t mask;
int i;
Expand Down

0 comments on commit 1a51241

Please sign in to comment.