Skip to content

Commit 7636605

Browse files
mrchappingomolnar
authored andcommitted
x86/defconfigs: Explicitly unset CONFIG_64BIT in i386_defconfig
A recent refresh of the defconfigs got rid of the following (unset) config: # CONFIG_64BIT is not set Innocuous as it seems, when the config file is saved again the behavior is changed so that CONFIG_64BIT=y. Currently, $ make i386_defconfig $ grep CONFIG_64BIT .config CONFIG_64BIT=y whereas previously (and with this patch): $ make i386_defconfig $ grep CONFIG_64BIT .config # CONFIG_64BIT is not set ( This was found with weird compiler errors on OpenEmbedded builds, as the compiler was unable to cope with 64-bits data types. ) Fixes: 1d0e12f ("x86/defconfigs: Refresh defconfig files") Reported-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Tested-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent f4d51df commit 7636605

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/x86/configs/i386_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ CONFIG_CGROUP_CPUACCT=y
1919
CONFIG_BLK_DEV_INITRD=y
2020
# CONFIG_COMPAT_BRK is not set
2121
CONFIG_PROFILING=y
22+
# CONFIG_64BIT is not set
2223
CONFIG_SMP=y
2324
CONFIG_X86_GENERIC=y
2425
CONFIG_HPET_TIMER=y

0 commit comments

Comments
 (0)