diff options
author | Saul Wold <sgw@linux.intel.com> | 2017-03-30 09:27:46 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-01 08:15:32 +0100 |
commit | 19e99786beeaf792094a4ed9859de00c064674b2 (patch) | |
tree | 5d5eb237da8665a4c986aa32cd4bcb8147469264 /scripts | |
parent | c09a0631b5b9d9d2a271771918fb003f5a9700f6 (diff) | |
download | poky-19e99786beeaf792094a4ed9859de00c064674b2.tar.gz |
yocto-bsp/i386 machine.cfg: Explicitly disable 64BIT
Since we do not set the 64 bit flags, newer kernels seem to build 64bit
config files by default. This is due to a hard-coded uname -m check that
selects the KBUILD_DEFCONFIG based on the host, not the cross target.
Similar to e9ec769926b2378e63380bd7762ce7ce201af151 in the yocto-kernel-cache repo
(From meta-yocto rev: e35017cc67f6d3c5cc00488d3460de0dcec773b3)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/machine.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/machine.cfg b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/machine.cfg index 3b168b7e36..fe5b8823fb 100644 --- a/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/machine.cfg +++ b/scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/files/machine.cfg | |||
@@ -1,5 +1,8 @@ | |||
1 | # yocto-bsp-filename {{=machine}}.cfg | 1 | # yocto-bsp-filename {{=machine}}.cfg |
2 | CONFIG_X86_32=y | 2 | CONFIG_X86_32=y |
3 | # Must explicitly disable 64BIT | ||
4 | # CONFIG_64BIT is not set | ||
5 | |||
3 | CONFIG_MATOM=y | 6 | CONFIG_MATOM=y |
4 | CONFIG_PRINTK=y | 7 | CONFIG_PRINTK=y |
5 | 8 | ||