diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-13 22:48:27 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-25 07:35:12 +0300 |
commit | ee4c6f00dcee1bffcb06ffa274251c1467d3efaa (patch) | |
tree | 68ea6c9c742f052d27add68e9a51759e1a42ae9a /scripts/kconfig/conf.c | |
parent | bafc479132160a5fa66efa1748c995e699655803 (diff) | |
download | linux-ee4c6f00dcee1bffcb06ffa274251c1467d3efaa.tar.xz |
kconfig: add help messages for --help (-h) and --silent (-s)
Add missing options and make the help message more readable.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/conf.c')
-rw-r--r-- | scripts/kconfig/conf.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index aac76acfd100..9ebc1acaf1ae 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -496,9 +496,13 @@ static struct option long_opts[] = { static void conf_usage(const char *progname) { - - printf("Usage: %s [-s] [option] <kconfig-file>\n", progname); - printf("[option] is _one_ of the following:\n"); + printf("Usage: %s [options] <kconfig-file>\n", progname); + printf("\n"); + printf("Generic options:\n"); + printf(" -h, --help Print this message and exit.\n"); + printf(" -s, --silent Do not print log.\n"); + printf("\n"); + printf("Mode options:\n"); printf(" --listnewconfig List new options\n"); printf(" --helpnewconfig List new options and help text\n"); printf(" --oldaskconfig Start a new configuration using a line-oriented program\n"); |