conf.c (5a3dc717b3c785242e6d40f08288947cb6751ee4) | conf.c (cedd55d49dee941d0e4fabb2f2f555d50c53fad7) |
---|---|
1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <locale.h> 7#include <ctype.h> 8#include <limits.h> --- 470 unchanged lines hidden (view full) --- 479static void conf_usage(const char *progname) 480{ 481 482 printf("Usage: %s [-s] [option] <kconfig-file>\n", progname); 483 printf("[option] is _one_ of the following:\n"); 484 printf(" --listnewconfig List new options\n"); 485 printf(" --oldaskconfig Start a new configuration using a line-oriented program\n"); 486 printf(" --oldconfig Update a configuration using a provided .config as base\n"); | 1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <locale.h> 7#include <ctype.h> 8#include <limits.h> --- 470 unchanged lines hidden (view full) --- 479static void conf_usage(const char *progname) 480{ 481 482 printf("Usage: %s [-s] [option] <kconfig-file>\n", progname); 483 printf("[option] is _one_ of the following:\n"); 484 printf(" --listnewconfig List new options\n"); 485 printf(" --oldaskconfig Start a new configuration using a line-oriented program\n"); 486 printf(" --oldconfig Update a configuration using a provided .config as base\n"); |
487 printf(" --silentoldconfig Same as oldconfig, but quietly, additionally update deps\n"); 488 printf(" --olddefconfig Same as silentoldconfig but sets new symbols to their default value\n"); | 487 printf(" --silentoldconfig Similar to oldconfig but generates configuration in\n" 488 " include/{generated/,config/} (oldconfig used to be more verbose)\n"); 489 printf(" --olddefconfig Same as oldconfig but sets new symbols to their default value\n"); |
489 printf(" --oldnoconfig An alias of olddefconfig\n"); 490 printf(" --defconfig <file> New config with default defined in <file>\n"); 491 printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n"); 492 printf(" --allnoconfig New config where all options are answered with no\n"); 493 printf(" --allyesconfig New config where all options are answered with yes\n"); 494 printf(" --allmodconfig New config where all options are answered with mod\n"); 495 printf(" --alldefconfig New config with all symbols set to default\n"); 496 printf(" --randconfig New config with random answer to all options\n"); --- 225 unchanged lines hidden --- | 490 printf(" --oldnoconfig An alias of olddefconfig\n"); 491 printf(" --defconfig <file> New config with default defined in <file>\n"); 492 printf(" --savedefconfig <file> Save the minimal current configuration to <file>\n"); 493 printf(" --allnoconfig New config where all options are answered with no\n"); 494 printf(" --allyesconfig New config where all options are answered with yes\n"); 495 printf(" --allmodconfig New config where all options are answered with mod\n"); 496 printf(" --alldefconfig New config with all symbols set to default\n"); 497 printf(" --randconfig New config with random answer to all options\n"); --- 225 unchanged lines hidden --- |