diff options
author | Xavier Roche <xavier.roche@open.eurogiciel.org> | 2015-01-28 20:41:53 +0100 |
---|---|---|
committer | Xavier Roche <xavier.roche@open.eurogiciel.org> | 2015-01-28 11:42:18 -0800 |
commit | 351485f331a0cbf60049e89ac1c6c23425d3ba4e (patch) | |
tree | 3fb78d5e5c749f57f5e1d335776bc812e17a9cba | |
parent | db6ab944d71077a02fb4b504bed4dc6f1cc7794c (diff) | |
download | meta-tizen-351485f331a0cbf60049e89ac1c6c23425d3ba4e.tar.gz meta-tizen-351485f331a0cbf60049e89ac1c6c23425d3ba4e.tar.bz2 meta-tizen-351485f331a0cbf60049e89ac1c6c23425d3ba4e.zip |
linux-yocto_3.14 : Fix 32bit kernel build
Disable CONFIG_64BIT kernel option when unnecessary ; enable it otherwise.
Change-Id: I1f8c021419215580fcfb43e4790a29446268c0da
Signed-off-by: Xavier Roche <xavier.roche@open.eurogiciel.org>
3 files changed, 3 insertions, 0 deletions
diff --git a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/arm/defconfig b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/arm/defconfig index b87200b0..b65c218f 100644 --- a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/arm/defconfig +++ b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/arm/defconfig @@ -1,4 +1,5 @@ # CONFIG_LOCALVERSION_AUTO is not set +# CONFIG_64BIT is not set CONFIG_DEFAULT_HOSTNAME="common_box" CONFIG_SYSVIPC=y CONFIG_POSIX_MQUEUE=y diff --git a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/i586/defconfig b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/i586/defconfig index bd2cb49a..b966900f 100644 --- a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/i586/defconfig +++ b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/i586/defconfig @@ -1,4 +1,5 @@ # CONFIG_LOCALVERSION_AUTO is not set +# CONFIG_64BIT is not set CONFIG_DEFAULT_HOSTNAME="common_box" CONFIG_SYSVIPC=y CONFIG_POSIX_MQUEUE=y diff --git a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/x86-64/defconfig b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/x86-64/defconfig index 92a6ebbe..e850f314 100644 --- a/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/x86-64/defconfig +++ b/meta-tizen-adaptation/meta/recipes-kernel/linux/linux-yocto/x86-64/defconfig @@ -1,4 +1,5 @@ # CONFIG_LOCALVERSION_AUTO is not set +CONFIG_64BIT=y CONFIG_DEFAULT_HOSTNAME="common_box" CONFIG_SYSVIPC=y CONFIG_POSIX_MQUEUE=y |