aboutsummaryrefslogtreecommitdiffstats
path: root/package/uboot-envtools/patches/003-nor-eraselen.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-10-24 21:49:24 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-10-24 21:49:24 +0000
commit61441fe2de5698cb3d7d66ea53bda84116f7c5b2 (patch)
treecdba213ef754396545faec4bacae5cf0772c1df1 /package/uboot-envtools/patches/003-nor-eraselen.patch
parent0ab6be2ba3ecab7f7295d658768464c4907825a7 (diff)
downloadupstream-61441fe2de5698cb3d7d66ea53bda84116f7c5b2.tar.gz
upstream-61441fe2de5698cb3d7d66ea53bda84116f7c5b2.tar.bz2
upstream-61441fe2de5698cb3d7d66ea53bda84116f7c5b2.zip
package/u-boot-envtools: update to version 2011.06.
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> SVN-Revision: 28566
Diffstat (limited to 'package/uboot-envtools/patches/003-nor-eraselen.patch')
-rw-r--r--package/uboot-envtools/patches/003-nor-eraselen.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uboot-envtools/patches/003-nor-eraselen.patch b/package/uboot-envtools/patches/003-nor-eraselen.patch
index 2673986404..fd10fecbea 100644
--- a/package/uboot-envtools/patches/003-nor-eraselen.patch
+++ b/package/uboot-envtools/patches/003-nor-eraselen.patch
@@ -1,7 +1,7 @@
--- a/fw_env.c
+++ b/fw_env.c
-@@ -605,7 +605,10 @@ static int flash_write_buf (int dev, int
- erase_offset = offset & ~(blocklen - 1);
+@@ -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;