X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/f66fe68a968ec4be79e540388fb64a14589a7744..d55ff237aa21be0cc267fd5de6d835be0510b8e2:/package/mtd/src/mtd.c?ds=sidebyside diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index 559b937f9..80d09abd2 100644 --- a/package/mtd/src/mtd.c +++ b/package/mtd/src/mtd.c @@ -40,7 +40,7 @@ #include #include -#include +#include "mtd.h" #define TRX_MAGIC 0x30524448 /* "HDR0" */ #define BUFSIZE (16 * 1024) @@ -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);