diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-24 21:49:24 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-24 21:49:24 +0000 |
commit | 8d5c50e5f624ae6c1387bc0cea2346d737f0c2a8 (patch) | |
tree | b3e9edc0856bdc1bf9838edcd08b0ea3dc49be97 /package/uboot-envtools/patches/003-nor-eraselen.patch | |
parent | 0475f34e0506095a3708f2acdd4f4413976439ad (diff) |
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.patch | 4 |
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; |