summaryrefslogtreecommitdiff
path: root/src/ostree/ot-admin-instutil-builtin-set-kargs.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2014-11-10 21:28:43 -0500
committerMatthew Barnes <mbarnes@redhat.com>2014-11-16 15:52:51 -0500
commit3a9127f103df3f4574aa441e044447cf36358578 (patch)
tree83668ede8614475d8ba67a642dd8fa9aa121aafd /src/ostree/ot-admin-instutil-builtin-set-kargs.c
parentf699153f67b1e37310434ffacd14695d2e89745d (diff)
downloadostree-3a9127f103df3f4574aa441e044447cf36358578.tar.gz
Various manpage / usage blurb improvements
Corrections, clarifications, consistency. Not a comprehensive overhaul of the manpages; they do still need work. These are just flaws I've noted while studying the ostree command syntax. https://bugzilla.gnome.org/show_bug.cgi?id=740097
Diffstat (limited to 'src/ostree/ot-admin-instutil-builtin-set-kargs.c')
-rw-r--r--src/ostree/ot-admin-instutil-builtin-set-kargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ostree/ot-admin-instutil-builtin-set-kargs.c b/src/ostree/ot-admin-instutil-builtin-set-kargs.c
index 214e4661..b683f19c 100644
--- a/src/ostree/ot-admin-instutil-builtin-set-kargs.c
+++ b/src/ostree/ot-admin-instutil-builtin-set-kargs.c
@@ -37,8 +37,8 @@ static char **opt_append;
static GOptionEntry options[] = {
{ "import-proc-cmdline", 0, 0, G_OPTION_ARG_NONE, &opt_proc_cmdline, "Import current /proc/cmdline", NULL },
{ "merge", 0, 0, G_OPTION_ARG_NONE, &opt_merge, "Merge with previous command line", NULL },
- { "replace", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_replace, "Set kernel argument, like root=/dev/sda1; this overrides any earlier argument with the same name", "KEY=VALUE" },
- { "append", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_append, "Append kernel argument; useful with e.g. console= that can be used multiple times", "KEY=VALUE" },
+ { "replace", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_replace, "Set kernel argument, like root=/dev/sda1; this overrides any earlier argument with the same name", "NAME=VALUE" },
+ { "append", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_append, "Append kernel argument; useful with e.g. console= that can be used multiple times", "NAME=VALUE" },
{ NULL }
};