firmware-utils: mktplinkfw: fix JFFS2 EOF markers
authorSergey Ryazanov <ryazanov.s.a@gmail.com>
Tue, 10 Oct 2017 22:07:08 +0000 (01:07 +0300)
committerJohn Crispin <john@phrozen.org>
Thu, 14 Dec 2017 08:29:30 +0000 (09:29 +0100)
commit7b681683c6e144947823733aa0d5145d27fdd9e0
tree4972dff588b491c048509e0124c506f7d20f813e
parentcf44c4e5eb08bc979f9928f8d04bc5346cd29f04
firmware-utils: mktplinkfw: fix JFFS2 EOF markers

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: 29a2c2ea80441895a2ffe100d854d2b26d5fa606 (add ability to put
jffs2 eof marker into the image)

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
src/mktplinkfw-lib.c