diff options
author | Darren Hart <dvhart@linux.intel.com> | 2014-01-17 22:28:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-28 00:48:22 +0000 |
commit | 1ff914118bdfb19d7f3d794a92ba3735c06ab97b (patch) | |
tree | 525f07a15ca72426958a3e7afab9447e2e1d766e /meta | |
parent | f5e0a574d87b7dc6466bfe01593fab5aa13464ff (diff) | |
download | openembedded-core-1ff914118bdfb19d7f3d794a92ba3735c06ab97b.tar.gz openembedded-core-1ff914118bdfb19d7f3d794a92ba3735c06ab97b.tar.bz2 openembedded-core-1ff914118bdfb19d7f3d794a92ba3735c06ab97b.zip |
i586: Only add the current tune to PACKAGE_EXTRA_ARCHS
The generic x86 build supports i586 by default, so this specific tune
file technically doesn't add any specific ARCHes to PACKAGE_EXTRA_ARCHS.
For consistency, append the current tune to PACKAGE_EXTRA_ARCHS.
Since we do not have specific tune files for i386 and i486, just drop
them.
These could be added to tune-x86 version if there is a need to
maintain them, but they really do not belong 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')
-rw-r--r-- | meta/conf/machine/include/tune-i586.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-i586.inc b/meta/conf/machine/include/tune-i586.inc index a315b35de6..5fbb3c74d2 100644 --- a/meta/conf/machine/include/tune-i586.inc +++ b/meta/conf/machine/include/tune-i586.inc @@ -11,4 +11,4 @@ AVAILTUNES += "i586" TUNE_FEATURES_tune-i586 = "${TUNE_FEATURES_tune-x86} i586" BASE_LIB_tune-i586 = "lib" TUNE_PKGARCH_tune-i586 = "i586" -PACKAGE_EXTRA_ARCHS_tune-i586 = "${PACKAGE_EXTRA_ARCHS_tune-x86} i386 i486 i586" +PACKAGE_EXTRA_ARCHS_tune-i586 = "${PACKAGE_EXTRA_ARCHS_tune-x86} i586" |