1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

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-a3cf2f4a3e73
This commit is contained in:
nbd
2006-10-25 19:47:09 +00:00
parent 347aee59dc
commit 053826c1ef

View File

@@ -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);