From: mbm Date: Thu, 28 Apr 2005 15:58:19 +0000 (+0000) Subject: always unlock X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=770185e2dc6a3e708711fbf2994a11c51829ed3f;p=openwrt.git always unlock git-svn-id: svn://svn.openwrt.org/openwrt/trunk@745 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/package/openwrt/mtd.c b/openwrt/package/openwrt/mtd.c index 6771b3c217..851f266282 100644 --- a/openwrt/package/openwrt/mtd.c +++ b/openwrt/package/openwrt/mtd.c @@ -237,7 +237,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 +256,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 +303,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);