diff options
author | Darren Hart <dvhart@linux.intel.com> | 2014-01-17 22:26:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:48:22 +0000 |
commit | 2a10d570560c37eb1d23cf853c0e541bc08a2878 (patch) | |
tree | 39273619ee7adc18cd18f3a32a5f619c3b7288e5 /meta/conf/machine | |
parent | 4cd33193b2db6c281275db2fb5cc169181955217 (diff) | |
download | openembedded-core-2a10d570560c37eb1d23cf853c0e541bc08a2878.tar.gz openembedded-core-2a10d570560c37eb1d23cf853c0e541bc08a2878.tar.bz2 openembedded-core-2a10d570560c37eb1d23cf853c0e541bc08a2878.zip |
tune-core2: Only add the current ARCH to PACKAGE_EXTRA_ARCHS
Inherit the PACKAGE_EXTRA_ARCHS from i586 and only explicitly add core2
here.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Paul Eggleton <paul.eggleton@intel.com>
Cc: Tom Zanussi <tom.zanussi@intel.com>
Cc: Nitin Kamble <nitin.a.kamble@intel.com>
Cc: Mark Hatle <mark.hatle@windriver.com>
Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
Cc: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r-- | meta/conf/machine/include/tune-core2.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-core2.inc b/meta/conf/machine/include/tune-core2.inc index 3b251972bb..2500a748b0 100644 --- a/meta/conf/machine/include/tune-core2.inc +++ b/meta/conf/machine/include/tune-core2.inc @@ -8,6 +8,7 @@ # DEFAULTTUNE ?= "core2" +# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS require conf/machine/include/tune-i586.inc # Extra tune features @@ -19,7 +20,7 @@ AVAILTUNES += "core2" TUNE_FEATURES_tune-core2 = "${TUNE_FEATURES_tune-x86} core2" BASE_LIB_tune-core2 = "lib" TUNE_PKGARCH_tune-core2 = "core2" -PACKAGE_EXTRA_ARCHS_tune-core2 = "${PACKAGE_EXTRA_ARCHS_tune-x86} i386 i486 i586 i686 core2" +PACKAGE_EXTRA_ARCHS_tune-core2 = "${PACKAGE_EXTRA_ARCHS_tune-i586} core2" AVAILTUNES += "core2-64" TUNE_FEATURES_tune-core2-64 = "${TUNE_FEATURES_tune-x86-64} core2" |