diff options
author | Khem Raj <raj.khem@gmail.com> | 2010-07-24 02:19:12 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2010-07-25 07:49:03 -0700 |
commit | e895bc3e7f5a1b73b0fd68f82a5a484b61bc4147 (patch) | |
tree | a0e1a1c05cae643e8b74c9356831d3b0d985bbbf /conf | |
parent | 48724742e863d274b9736d2609d9b3976ce5d200 (diff) |
bitbake.conf: Add thumb-interwork to DISTRO_FEATURES if machine supports it.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 748abba0e3..8cb8187ef7 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -734,6 +734,8 @@ OES_BITBAKE_CONF = "1" MACHINE_FEATURES ?= "kernel26" DISTRO_FEATURES ?= "" +# Add thumb-interwork to feature list if selected machine supports it. +DISTRO_FEATURES += ' ${@["", "thumb-interwork"][bb.data.getVar('THUMB_INTERWORK', d, 1) == "yes"]}' # This is used to limit what packages goes into images built, so set big by default ROOT_FLASH_SIZE ?= "256" |