mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:42:49 +02:00
8d5c50e5f6
This updates uboot-envtools to the version which comes with U-Boot 2011.06. The important novelity is that fw_setenv now supports batch processing, which greatly improves sysupgrade of the ALL0258N as otherwise we would have to overwrite uboot-env up to 8x in a single firmware upgrade. Unfortunately, no newer version of the sources is available from Debian, so we got to take it from the u-boot source which is kinda ugly... Signed-off-by: Daniel Golle <dgolle@allnet.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28566 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
388 B
Diff
15 lines
388 B
Diff
--- a/fw_env.c
|
|
+++ b/fw_env.c
|
|
@@ -779,7 +779,10 @@ static int flash_write_buf (int dev, int
|
|
erase_offset = (offset / blocklen) * blocklen;
|
|
|
|
/* Maximum area we may use */
|
|
- erase_len = top_of_range - erase_offset;
|
|
+ if (mtd_type == MTD_NANDFLASH)
|
|
+ erase_len = top_of_range - erase_offset;
|
|
+ else
|
|
+ erase_len = blocklen;
|
|
|
|
blockstart = erase_offset;
|
|
/* Offset inside a block */
|