fw_env: correct writes to devices with small erase blocks
authorDustin Byford <dustin@cumulusnetworks.com>
Fri, 7 Mar 2014 04:48:23 +0000 (20:48 -0800)
committerTom Rini <trini@ti.com>
Wed, 12 Mar 2014 21:04:29 +0000 (17:04 -0400)
commit4b774ff114201175ea9c05dfa12eef3ff1704753
tree2aacf5076cbafc8387458a2f432e244d586d85b4
parent23869bf80b68af9ef1802b9e556f4fd0e9e57fe5
fw_env: correct writes to devices with small erase blocks

Some NOR flash devices have a small erase block size.  For example, the
Micron N25Q512 can erase in 4K blocks.  These devices expose a bug in
fw_env.c where flash_write_buf() incorrectly calculates bytes written
and attempts to write past the environment sectors.  Luckily, a range
check prevents any real damage, but this does cause fw_setenv to fail
with an error.

This change corrects the write length calculation.

The bug was introduced with commit 56086921 from 2008 and only affects
configurations where the erase block size is smaller than the total
environment data size.

Signed-off-by: Dustin Byford <dustin@cumulusnetworks.com>
tools/env/fw_env.c