The patch titled config: update usage/help info has been removed from the -mm tree. Its filename is config-update-usage-help-info.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Replace outdated help message with a reference to README. Update README for make *config variants and environment variable info. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Acked-by: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- README | 23 ++++++++++++++++++++++- scripts/kconfig/conf.c | 3 ++- 2 files changed, 24 insertions(+), 2 deletions(-) diff -puN README~config-update-usage-help-info README --- README~config-update-usage-help-info 2006-04-18 22:20:02.000000000 -0700 +++ devel-akpm/README 2006-04-18 22:20:02.000000000 -0700 @@ -165,10 +165,31 @@ CONFIGURING the kernel: "make xconfig" X windows (Qt) based configuration tool. "make gconfig" X windows (Gtk) based configuration tool. "make oldconfig" Default all questions based on the contents of - your existing ./.config file. + your existing ./.config file and asking about + new config symbols. "make silentoldconfig" Like above, but avoids cluttering the screen with questions already answered. + "make defconfig" Create a ./.config file by using the default + symbol values from arch/$ARCH/defconfig. + "make allyesconfig" + Create a ./.config file by setting symbol + values to 'y' as much as possible. + "make allmodconfig" + Create a ./.config file by setting symbol + values to 'm' as much as possible. + "make allnoconfig" Create a ./.config file by setting symbol + values to 'n' as much as possible. + "make randconfig" Create a ./.config file by setting symbol + values to random values. + + The allyesconfig/allmodconfig/allnoconfig/randconfig variants can + also use the environment variable KCONFIG_ALLCONFIG to specify a + filename that contains config options that the user requires to be + set to a specific value. If KCONFIG_ALLCONFIG=filename is not used, + "make *config" checks for a file named "all{yes/mod/no/random}.config" + for symbol values that are to be forced. If this file is not found, + it checks for a file named "all.config" to contain forced values. NOTES on "make config": - having unnecessary drivers will make the kernel bigger, and can diff -puN scripts/kconfig/conf.c~config-update-usage-help-info scripts/kconfig/conf.c --- devel/scripts/kconfig/conf.c~config-update-usage-help-info 2006-04-18 22:20:02.000000000 -0700 +++ devel-akpm/scripts/kconfig/conf.c 2006-04-18 22:20:02.000000000 -0700 @@ -5,6 +5,7 @@ #include <ctype.h> #include <stdlib.h> +#include <stdio.h> #include <string.h> #include <unistd.h> #include <time.h> @@ -531,7 +532,7 @@ int main(int ac, char **av) break; case 'h': case '?': - printf("%s [-o|-s] config\n", av[0]); + fprintf(stderr, "See README for usage info\n"); exit(0); } } _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch config-exit-if-no-beginning-filename.patch git-mtd.patch areca-raid-linux-scsi-driver.patch git-watchdog.patch softmac-uses-wiress-ext.patch bcm43-wireless-fix-printk-format-warnings.patch bcm43-fix-config-menu-alignment.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch tpm_infineon-section-fixup.patch acpi-identify-which-device-is-not-power-manageable.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html