ignore mtd erase errors (will probably be required for nand flash)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5292 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
70a31f5d30
commit
c124cbd78c
|
@ -235,11 +235,8 @@ mtd_erase(const char *mtd)
|
|||
mtdEraseInfo.start += mtdInfo.erasesize) {
|
||||
|
||||
ioctl(fd, MEMUNLOCK, &mtdEraseInfo);
|
||||
if(ioctl(fd, MEMERASE, &mtdEraseInfo)) {
|
||||
fprintf(stderr, "Could not erase MTD device: %s\n", mtd);
|
||||
close(fd);
|
||||
exit(1);
|
||||
}
|
||||
if(ioctl(fd, MEMERASE, &mtdEraseInfo))
|
||||
fprintf(stderr, "Failed to erase block on %s at 0x%x\n", mtd, mtdEraseInfo.start);
|
||||
}
|
||||
|
||||
close(fd);
|
||||
|
|
Loading…
Reference in New Issue