From: Masahiro Yamada Date: Sat, 13 Mar 2021 19:48:26 +0000 (+0900) Subject: kconfig: add long options --help and --silent X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bafc479132160a5fa66efa1748c995e699655803;p=linux.git kconfig: add long options --help and --silent They are long options for -h and -s, respectively. Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index dc1a67fd35a99..aac76acfd100c 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},