The patch titled kconfig: obey KCONFIG_ALLCONFIG choices with randconfig. has been removed from the -mm tree. Its filename was kconfig-obey-kconfig_allconfig-choices-with-randconfig.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: kconfig: obey KCONFIG_ALLCONFIG choices with randconfig. From: Paul Mundt <lethal@xxxxxxxxxxxx> Currently when using KCONFIG_ALLCONFIG with randconfig the choice options are clobbered. As recommended by Roman, this adds an is_new test to see whether to select a new option or obey the existing one. This is a resend of the earlier patch a couple of weeks ago, since there was no reply. Original thread is at http://lkml.org/lkml/2007/11/28/94 Signed-off-by: Paul Mundt <lethal@xxxxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/kconfig/conf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN scripts/kconfig/conf.c~kconfig-obey-kconfig_allconfig-choices-with-randconfig scripts/kconfig/conf.c --- a/scripts/kconfig/conf.c~kconfig-obey-kconfig_allconfig-choices-with-randconfig +++ a/scripts/kconfig/conf.c @@ -374,7 +374,8 @@ static int conf_choice(struct menu *menu continue; break; case set_random: - def = (random() % cnt) + 1; + if (is_new) + def = (random() % cnt) + 1; case set_default: case set_yes: case set_mod: _ Patches currently in -mm which might be from lethal@xxxxxxxxxxxx are git-acpi.patch hp6xx-hp7xx-clean-up-drivers-input-keyboardtouchscreen-kconfigs.patch git-sh.patch nommu-add-new-vmalloc_user-and-remap_vmalloc_range-interfaces.patch kernel-printkc-concerns-about-the-console-handover.patch fix-__const_udelay-declaration-and-definition-mismatches.patch avoid-overflows-in-kernel-timec.patch rtc-ds1302-rtc-support.patch rtc-ds1302-rtc-support-checkpatch-fixes.patch fb-defio-nopage.patch use-bootmem_exclusive-for-kdump.patch sanitize-the-type-of-struct-useru_ar0.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