ignore mtd erase errors (will probably be required for nand flash)
authorFelix Fietkau <nbd@openwrt.org>
Wed, 25 Oct 2006 19:47:09 +0000 (19:47 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 25 Oct 2006 19:47:09 +0000 (19:47 +0000)
SVN-Revision: 5292

package/mtd/src/mtd.c

index 559b937f971aa5a4e5fa2d647706d5c2d314d1cf..f5acb1effced94135caa080d48bcb8dba2b01847 100644 (file)
@@ -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);