diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-19 23:12:06 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-19 23:12:06 +0000 |
commit | 9c5386c1fd74d832cf6e2acad3c69b1cc90de6b2 (patch) | |
tree | aa2db23da10e883f0f8627f5993cd2cfade2e705 /meta/conf/bitbake.conf | |
parent | 185cb38f1319856b4bdaaf4d9a73b5056be53d54 (diff) | |
download | poky-9c5386c1fd74d832cf6e2acad3c69b1cc90de6b2.tar.gz |
base.bbclass: Split up as per the patch in OE.dev by Chris Larson making code more readable and modularised
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 1341349c4a..1745688fa8 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -676,3 +676,18 @@ COMBINED_FEATURES = "\ | |||
676 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "usbgadget", d)} \ | 676 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "usbgadget", d)} \ |
677 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "usbhost", d)} \ | 677 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "usbhost", d)} \ |
678 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "wifi", d)}" | 678 | ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "wifi", d)}" |
679 | |||
680 | |||
681 | # Make sure MACHINE isn't exported | ||
682 | # (breaks binutils at least) | ||
683 | MACHINE[unexport] = "1" | ||
684 | |||
685 | # Make sure TARGET_ARCH isn't exported | ||
686 | # (breaks Makefiles using implicit rules, e.g. quilt, as GNU make has this | ||
687 | # in them, undocumented) | ||
688 | TARGET_ARCH[unexport] = "1" | ||
689 | |||
690 | # Make sure DISTRO isn't exported | ||
691 | # (breaks sysvinit at least) | ||
692 | DISTRO[unexport] = "1" | ||
693 | |||