X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/3006a8ce77dbffcd872c4886006c0e9826c568bb..933cf2babfd76f50f2cf6e01e22bf7f4135b1250:/package/openwrt/mtd.c diff --git a/package/openwrt/mtd.c b/package/openwrt/mtd.c index 6771b3c21..f0c127b72 100644 --- a/package/openwrt/mtd.c +++ b/package/openwrt/mtd.c @@ -19,6 +19,8 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ + * + * code is based on linux-mtd example code */ #include @@ -237,7 +239,6 @@ void usage(void) " erase erase all data on device\n" " write write imagefile to device\n" "Following options are available:\n" - " -u unlock device before accessing it\n" " -r reboot after successful command\n" " -e erase before executing the command\n\n" "Example: To write linux.trx to mtd4 labeled as linux and reboot afterwards\n" @@ -257,13 +258,9 @@ int main (int argc, char **argv) erase[0] = NULL; boot = 0; - unlock = 0; - while ((ch = getopt(argc, argv, "ure:")) != -1) + while ((ch = getopt(argc, argv, "re:")) != -1) switch (ch) { - case 'u': - unlock = 1; - break; case 'r': boot = 1; break; @@ -308,12 +305,10 @@ int main (int argc, char **argv) i++; } - if (unlock) - mtd_unlock(device); + mtd_unlock(device); switch (cmd) { case CMD_UNLOCK: - mtd_unlock(device); break; case CMD_ERASE: mtd_erase(device);