aboutsummaryrefslogtreecommitdiffstats
path: root/package/uboot-envtools/patches/003-nor-eraselen.patch
blob: c6eb59a726077e08c713d9e06bdcbf78f9eab64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/fw_env.c
+++ b/fw_env.c
@@ -790,7 +790,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;
+	if (mtd_type == MTD_NANDFLASH)
+		erase_len = top_of_range - erase_offset;
+	else
+		erase_len = blocklen;
 
 	blockstart = erase_offset;
 	/* Offset inside a block */