You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
388 B

--- a/fw_env.c
+++ b/fw_env.c
@@ -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;
+ if (mtd_type == MTD_NANDFLASH)
+ erase_len = top_of_range - erase_offset;
+ else
+ erase_len = blocklen;
blockstart = erase_offset;
/* Offset inside a block */