diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-09-07 12:09:18 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-09-08 20:37:27 -0700 |
commit | 3e0e303e7ad1c6e34a446e37c7ba8fcfb3b72125 (patch) | |
tree | b0b2053cd9f90e09112cddcc0e019fbf61fe3359 /conf/machine | |
parent | b4bb4f34f7f066ff0090739773168dc5610d12fd (diff) |
tune-xscale.inc: Use TARGET_ARCH to find endianness
* Use TARGET_ARCH to find endianness instead of
SITEINFO_ENDIANNESS which is not yet evaluated.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/tune-xscale.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/conf/machine/include/tune-xscale.inc b/conf/machine/include/tune-xscale.inc index 7fa6447648..3a6bd0e659 100644 --- a/conf/machine/include/tune-xscale.inc +++ b/conf/machine/include/tune-xscale.inc @@ -1,9 +1,12 @@ -FEED_ARCH = "${@['armv5teb', 'armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}" +# this depends on fact that for ARM the TARGET_ARCH is 'arm' for little endian and 'armeb' for bigendian +# this is the case as of now for all arm machines in OE. + +FEED_ARCH = "${@['armv5teb', 'armv5te'][bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}" TARGET_CC_ARCH = "-march=armv5te -mtune=xscale" TARGET_CC_KERNEL_ARCH = "-march=armv5te -mtune=xscale" -PACKAGE_EXTRA_ARCHS += "${@['armv4b armv4tb armv5teb', 'armv4 armv4t armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}" -BASE_PACKAGE_ARCH := "${@['armv5teb', 'armv5te'][bb.data.getVar('SITEINFO_ENDIANESS', d, 1) == 'le']}" +PACKAGE_EXTRA_ARCHS += "${@['armv4b armv4tb armv5teb', 'armv4 armv4t armv5te'][ bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}" +BASE_PACKAGE_ARCH = "${@['armv5teb', 'armv5te'][bb.data.getVar('TARGET_ARCH', d, 1) == 'arm']}" # Include tune file for thumb support, it defaults to off so DISTROs can turn it on if they wish require conf/machine/include/tune-thumb.inc |