Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: document the positional argument in the help message

The positional argument specifies the top-level Kconfig. Include this
information in the help message.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+4 -1
+4 -1
scripts/kconfig/conf.c
··· 628 628 629 629 static void conf_usage(const char *progname) 630 630 { 631 - printf("Usage: %s [options] <kconfig-file>\n", progname); 631 + printf("Usage: %s [options] kconfig_file\n", progname); 632 632 printf("\n"); 633 633 printf("Generic options:\n"); 634 634 printf(" -h, --help Print this message and exit.\n"); ··· 653 653 printf(" --mod2yesconfig Change answers from mod to yes if possible\n"); 654 654 printf(" --mod2noconfig Change answers from mod to no if possible\n"); 655 655 printf(" (If none of the above is given, --oldaskconfig is the default)\n"); 656 + printf("\n"); 657 + printf("Arguments:\n"); 658 + printf(" kconfig_file Top-level Kconfig file.\n"); 656 659 } 657 660 658 661 int main(int ac, char **av)