diff options
author | Ruslan Bilovol <rbilovol@cisco.com> | 2017-08-22 14:06:40 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 08:44:41 +0100 |
commit | 0724896f7a2092abf2f3bafa9fac96c5210d39a5 (patch) | |
tree | c79d60e94b557927446fe19c06010753b2599670 | |
parent | 71c29b53f1a44430306eeda96dc43cf7d002afe5 (diff) | |
download | openembedded-core-0724896f7a2092abf2f3bafa9fac96c5210d39a5.tar.gz openembedded-core-0724896f7a2092abf2f3bafa9fac96c5210d39a5.tar.bz2 openembedded-core-0724896f7a2092abf2f3bafa9fac96c5210d39a5.zip |
machine-sdk: oldest kernel for x86/x86_64 is 3.2.0 now
With glibc upgrade to 2.26 release (commit d6a0bc57fa07
"glibc: Upgrade to 2.26 final release") it's not possible
to build x86/x86_64 SDK for kernels lower than 3.2.0
(see glibc commit 139ace95756a "Require Linux kernel 3.2
or later on x86 / x86_64.")
Thus drop SDK_OLDEST_KERNEL overrides from machine-specific
conf files, so default version 3.2.0 from conf/bitbake.conf
will be picked up.
Signed-off-by: Ruslan Bilovol <rbilovol@cisco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/machine-sdk/i586.conf | 1 | ||||
-rw-r--r-- | meta/conf/machine-sdk/i686.conf | 1 | ||||
-rw-r--r-- | meta/conf/machine-sdk/x86_64.conf | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/meta/conf/machine-sdk/i586.conf b/meta/conf/machine-sdk/i586.conf index 99083fb63e..41e5e159d1 100644 --- a/meta/conf/machine-sdk/i586.conf +++ b/meta/conf/machine-sdk/i586.conf @@ -1,5 +1,4 @@ SDK_ARCH = "i586" SDK_CC_ARCH = "-march=i586" ABIEXTENSION_class-nativesdk = "" -SDK_OLDEST_KERNEL = "2.6.32" diff --git a/meta/conf/machine-sdk/i686.conf b/meta/conf/machine-sdk/i686.conf index cf22784e9a..fe406972c8 100644 --- a/meta/conf/machine-sdk/i686.conf +++ b/meta/conf/machine-sdk/i686.conf @@ -1,4 +1,3 @@ SDK_ARCH = "i686" SDK_CC_ARCH = "-march=i686" ABIEXTENSION_class-nativesdk = "" -SDK_OLDEST_KERNEL = "2.6.32" diff --git a/meta/conf/machine-sdk/x86_64.conf b/meta/conf/machine-sdk/x86_64.conf index 7d2e717807..61439b4fb0 100644 --- a/meta/conf/machine-sdk/x86_64.conf +++ b/meta/conf/machine-sdk/x86_64.conf @@ -1,3 +1,2 @@ SDK_ARCH = "x86_64" ABIEXTENSION_class-nativesdk = "" -SDK_OLDEST_KERNEL = "2.6.32" |