Bug 10470
Summary: | x86: defconfig not being applied automatically since 2.6.24 | ||
---|---|---|---|
Product: | Other | Reporter: | Daniel Drake (dsd) |
Component: | Other | Assignee: | Sam Ravnborg (sam) |
Status: | CLOSED CODE_FIX | ||
Severity: | normal | CC: | kernel, kfm, mingo, randy.dunlap, tglx |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 2.6.24 | Subsystem: | |
Regression: | Yes | Bisected commit-id: |
Description
Daniel Drake
2008-04-17 10:53:47 UTC
downstream bug report: http://bugs.gentoo.org/show_bug.cgi?id=215442 Hi Daniel. Following patch seems fix it in my testing. Can you try to give it a spin. It just expand the defconfig list with an additional choice that depends on the bit size. Sam diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index a12dbb2..91df357 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -25,6 +25,18 @@ config X86 select HAVE_KVM if ((X86_32 && !X86_VOYAGER && !X86_VISWS && !X86_NUMAQ) || X86_64) select HAVE_ARCH_KGDB if !X86_VOYAGER +config DEFCONFIG_LIST + string + depends on X86_32 + option defconfig_list + default "arch/x86/configs/i386_defconfig" + +config DEFCONFIG_LIST + string + depends on X86_64 + option defconfig_list + default "arch/x86/configs/x86_64_defconfig" + config GENERIC_LOCKBREAK def_bool n that works, thanks! Fix is in x86.git and will hit mainline soon. |