diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-13 22:48:26 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-25 07:35:03 +0300 |
commit | bafc479132160a5fa66efa1748c995e699655803 (patch) | |
tree | 7c88071600e26e96fd6a59ba8c8edea3db900c95 /scripts | |
parent | ed562c53104fbe097f012bec5a30196334e52d78 (diff) | |
download | linux-bafc479132160a5fa66efa1748c995e699655803.tar.xz |
kconfig: add long options --help and --silent
They are long options for -h and -s, respectively.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index dc1a67fd35a9..aac76acfd100 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -474,6 +474,8 @@ static void check_conf(struct menu *menu) } static struct option long_opts[] = { + {"help", no_argument, NULL, 'h'}, + {"silent", no_argument, NULL, 's'}, {"oldaskconfig", no_argument, &input_mode_opt, oldaskconfig}, {"oldconfig", no_argument, &input_mode_opt, oldconfig}, {"syncconfig", no_argument, &input_mode_opt, syncconfig}, |