move boot related packages to their own folder

SVN-Revision: 33781
This commit is contained in:
John Crispin
2012-10-16 13:44:25 +00:00
parent 254d851d8a
commit e75106aa0d
104 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,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 */