aboutsummaryrefslogtreecommitdiff
path: root/ubi-utils/src/ubirmvol.c
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2007-12-26 15:12:26 +0200
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2007-12-26 16:23:04 +0200
commit9ba41c4dc891e38c92126bfcc4c366d765841da0 (patch)
tree5d095e949421d86dc2e2df83245405bbf7c84945 /ubi-utils/src/ubirmvol.c
parent126341588c5e9d9077e31c4a5f550c83b2e3e93d (diff)
ubi-utils: add ubiattach and ubidetach
Add 2 new utilities to attach and detach UBI devices. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/src/ubirmvol.c')
-rw-r--r--ubi-utils/src/ubirmvol.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ubi-utils/src/ubirmvol.c b/ubi-utils/src/ubirmvol.c
index 5f35525..60bcdc0 100644
--- a/ubi-utils/src/ubirmvol.c
+++ b/ubi-utils/src/ubirmvol.c
@@ -36,7 +36,7 @@
#define PROGRAM_VERSION "1.5"
#define PROGRAM_NAME "ubirmvol"
-/* The variables below is set by command line arguments */
+/* The variables below are set by command line arguments */
struct args {
int vol_id;
const char *node;
@@ -47,8 +47,8 @@ static struct args myargs = {
.node = NULL,
};
-static const char *doc = "Version: " PROGRAM_VERSION "\n"
- PROGRAM_NAME " - a tool to remove UBI volumes.";
+static const char *doc = PROGRAM_NAME " version " PROGRAM_VERSION
+ " - a tool to remove UBI volumes.";
static const char *optionsstr =
" -n, --vol_id=<volume id> volume ID to remove\n"
@@ -121,7 +121,7 @@ static int parse_opt(int argc, char * const argv[])
errmsg("UBI device name was not specified (use -h for help)");
return -1;
} else if (optind != argc - 1) {
- errmsg("more then one UBI devices specified (use -h for help)");
+ errmsg("more then one UBI device specified (use -h for help)");
return -1;
}