diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-07-19 01:09:01 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-07-19 15:31:45 -0700 |
commit | e9fe87a13cf4e0453ff601c422ecbe6a98bc8f76 (patch) | |
tree | cb18d8871092eca48a40da491ed8d24f496ccb98 /conf/distro/minimal.conf | |
parent | 9a3b6034297b47c56bc9dd7c4dfc888121d35a98 (diff) |
distro: Move thumb into distro features
* Currenlty we define the thumb specific overrides in machine tune files
and as machine conf files are included before the distro conf files
the overrides dont get right values and set incorrectly.
* This patch moves the tune-thumb.inc from machine/include into
distro/include and lets distro decide on thumb and thumb-interworking
features based on the machine selected. If a machine which does not
support thumb like all armv4 based machines is selected then distro
makes correct decision now to disable thumb and thumb-interworking
based upon the machine seletected.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'conf/distro/minimal.conf')
-rw-r--r-- | conf/distro/minimal.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf index e400c14d65..9a081309e1 100644 --- a/conf/distro/minimal.conf +++ b/conf/distro/minimal.conf @@ -16,7 +16,7 @@ DISTRO_VERSION = "dev-snapshot-${SRCDATE}" DISTRO_TYPE ?= "debug" # Ensure some form of release config, so error out if someone thinks he knows better -DISTRO_CHECK := "${@bb.data.getVar('DISTRO_VERSION',d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION") +DISTRO_CHECK := "${@bb.data.getVar('DISTRO_VERSION',d,1) or bb.fatal('Remove this line or set a dummy DISTRO_VERSION')}" ############################################################################# # FEATURE SELECTION @@ -86,6 +86,7 @@ MACHINE_KERNEL_VERSION = "2.6" ############################################################################# LIBC ?= "eglibc" require conf/distro/include/sane-toolchain.inc +require conf/distro/include/arm-thumb.inc ############################################################################# # PREFERRED VERSIONS |