add missing file from patch
authorTravis Kemen <thepeople@openwrt.org>
Mon, 8 Mar 2010 15:25:53 +0000 (15:25 +0000)
committerTravis Kemen <thepeople@openwrt.org>
Mon, 8 Mar 2010 15:25:53 +0000 (15:25 +0000)
SVN-Revision: 20062

package/uboot-envtools/patches/003-nor-eraselen.patch [new file with mode: 0644]

diff --git a/package/uboot-envtools/patches/003-nor-eraselen.patch b/package/uboot-envtools/patches/003-nor-eraselen.patch
new file mode 100644 (file)
index 0000000..2673986
--- /dev/null
@@ -0,0 +1,14 @@
+--- 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);
+       /* 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 */