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
commit215ab49ae23423c44da1216e95c571fc3f3b6dfb (patch)
treeb3e9edc0856bdc1bf9838edcd08b0ea3dc49be97 /package/uboot-envtools/patches/003-nor-eraselen.patch
parent4ac887fba42175664124a4eab1e6d98ba1d242c6 (diff)
downloadmaster-187ad058-215ab49ae23423c44da1216e95c571fc3f3b6dfb.tar.gz
master-187ad058-215ab49ae23423c44da1216e95c571fc3f3b6dfb.tar.bz2
master-187ad058-215ab49ae23423c44da1216e95c571fc3f3b6dfb.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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28566 3c298f89-4303-0410-b956-a3cf2f4a3e73
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;