瀏覽代碼

add missing file from patch

SVN-Revision: 20062
Travis Kemen 15 年之前
父節點
當前提交
891d26ab51
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      package/uboot-envtools/patches/003-nor-eraselen.patch

+ 14 - 0
package/uboot-envtools/patches/003-nor-eraselen.patch

@@ -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 */