]> git.baikalelectronics.ru Git - kernel.git/commit
kconfig: fix 'invalid option' for help option
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 21 Feb 2021 13:03:16 +0000 (22:03 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Wed, 24 Feb 2021 06:12:06 +0000 (15:12 +0900)
commitc85f1d95225b196dc826ee60109237ad617412f9
tree4c454bb77f58c15a3ebb875250f6a326197f1194
parent1361364bc4a0bf8250dcfa27eb10b3662a3ef89f
kconfig: fix 'invalid option' for help option

scripts/kconfig/conf supports -? option to show the help message.
This is not wired up to Makefile, so nobody would notice this, but
it also shows 'invalid option' message.

  $ ./scripts/kconfig/conf -?
  ./scripts/kconfig/conf: invalid option -- '?'
  Usage: ./scripts/kconfig/conf [-s] [option] <kconfig-file>
  [option] is _one_ of the following:
    --listnewconfig         List new options
    --helpnewconfig         List new options and help text
    --oldaskconfig          Start a new configuration using a line-oriented program
    ...

The reason is the '?' is missing in the short option list passed to
getopt_long().

While I fixed this issue, I also changed the option '?' to 'h'.
I prefer -h (or --help, if a long option is also desired).

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/conf.c