diff options
author | Alexander Shiyan | 2013-03-15 00:27:41 +0100 |
---|---|---|
committer | Denys Vlasenko | 2013-03-15 00:27:41 +0100 |
commit | 0d61dcd6411129afa6b880653de0a1c4356974cc (patch) | |
tree | e37968fbbc09d748742cd79df3e2df94e96a87cc /miscutils/nandwrite.c | |
parent | af4a07a24408667fa77a9a9bcc9fc773e0364e77 (diff) | |
download | busybox-0d61dcd6411129afa6b880653de0a1c4356974cc.zip busybox-0d61dcd6411129afa6b880653de0a1c4356974cc.tar.gz |
nanddump: fix build if nandwrite isn't enabled
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/nandwrite.c')
-rw-r--r-- | miscutils/nandwrite.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index 5908ac7..e3f9b56 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c @@ -23,7 +23,7 @@ //config: Dump the content of raw NAND chip //applet:IF_NANDWRITE(APPLET(nandwrite, BB_DIR_USR_SBIN, BB_SUID_DROP)) -//applet:IF_NANDWRITE(APPLET_ODDNAME(nanddump, nandwrite, BB_DIR_USR_SBIN, BB_SUID_DROP, nanddump)) +//applet:IF_NANDDUMP(APPLET_ODDNAME(nanddump, nandwrite, BB_DIR_USR_SBIN, BB_SUID_DROP, nanddump)) //kbuild:lib-$(CONFIG_NANDWRITE) += nandwrite.o //kbuild:lib-$(CONFIG_NANDDUMP) += nandwrite.o @@ -31,14 +31,14 @@ //usage:#define nandwrite_trivial_usage //usage: "[-p] [-s ADDR] MTD_DEVICE [FILE]" //usage:#define nandwrite_full_usage "\n\n" -//usage: "Write to the specified MTD device\n" +//usage: "Write to MTD_DEVICE\n" //usage: "\n -p Pad to page size" //usage: "\n -s ADDR Start address" //usage:#define nanddump_trivial_usage -//usage: "[-o] [-b] [-s ADDR] [-f FILE] MTD_DEVICE" +//usage: "[-o] [-b] [-s ADDR] [-l LEN] [-f FILE] MTD_DEVICE" //usage:#define nanddump_full_usage "\n\n" -//usage: "Dump the specified MTD device\n" +//usage: "Dump MTD_DEVICE\n" //usage: "\n -o Dump oob data" //usage: "\n -b Omit bad block from the dump" //usage: "\n -s ADDR Start address" |