diff options
author | Mike Baker <mbm@openwrt.org> | 2005-04-28 15:58:19 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-04-28 15:58:19 +0000 |
commit | 0213c90179c014bd4315ec278159fc2612a208b7 (patch) | |
tree | b7c59e36c0a61ed8f02b8ee1899ba469dd22b4ef | |
parent | 4bd5d68a6308df6b0510303e7c6b21f2146482bb (diff) | |
download | mtk-20170518-0213c90179c014bd4315ec278159fc2612a208b7.zip mtk-20170518-0213c90179c014bd4315ec278159fc2612a208b7.tar.gz mtk-20170518-0213c90179c014bd4315ec278159fc2612a208b7.tar.bz2 |
always unlock
SVN-Revision: 745
-rw-r--r-- | openwrt/package/openwrt/mtd.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/openwrt/package/openwrt/mtd.c b/openwrt/package/openwrt/mtd.c index 6771b3c..851f266 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 <imagefile> write imagefile to device\n" "Following options are available:\n" - " -u unlock device before accessing it\n" " -r reboot after successful command\n" " -e <device> erase <device> 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); |