mirror of https://github.com/hak5/openwrt-owl.git
ignore mtd erase errors (will probably be required for nand flash)
SVN-Revision: 5292owl
parent
6c85d6f9e8
commit
97e54a1932
|
@ -235,11 +235,8 @@ mtd_erase(const char *mtd)
|
||||||
mtdEraseInfo.start += mtdInfo.erasesize) {
|
mtdEraseInfo.start += mtdInfo.erasesize) {
|
||||||
|
|
||||||
ioctl(fd, MEMUNLOCK, &mtdEraseInfo);
|
ioctl(fd, MEMUNLOCK, &mtdEraseInfo);
|
||||||
if(ioctl(fd, MEMERASE, &mtdEraseInfo)) {
|
if(ioctl(fd, MEMERASE, &mtdEraseInfo))
|
||||||
fprintf(stderr, "Could not erase MTD device: %s\n", mtd);
|
fprintf(stderr, "Failed to erase block on %s at 0x%x\n", mtd, mtdEraseInfo.start);
|
||||||
close(fd);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
Loading…
Reference in New Issue