diff options
author | Chase Maupin <chasemaupin03@gmail.com> | 2010-08-03 11:47:20 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-08-04 15:48:14 +0200 |
commit | 07076390358f211bd96779bec2d6eb5eaa0ad699 (patch) | |
tree | a077e94cf5b9ed490c09f7badefd6d2e2dec707f /classes/base.bbclass | |
parent | 202222243b674a2dc92f28b5c511a4907c3b3fed (diff) |
base.bbclass: add support for SOC_FAMILY in COMPATIBLE_MACHINES
* Add support for using SOC_FAMILY in the COMPATIBLE_MACHINES
setting for a recipe.
* This will allow recipes to work for entire families of
devices without having to maintain/update the compatible
devices as new devices are added into a family
Signed-off-by: Chase Maupin <chase.maupin@ti.com>
Acked-by: Denys Dmytriyenko <denys@ti.com>
Acked-by: Koen Kooi <k-kooi@ti.com>
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r-- | classes/base.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 1847491c47..02c7875c03 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -389,7 +389,9 @@ python () { import re this_machine = bb.data.getVar('MACHINE', d, 1) if this_machine and not re.match(need_machine, this_machine): - raise bb.parse.SkipPackage("incompatible with machine %s" % this_machine) + this_soc_family = bb.data.getVar('SOC_FAMILY', d, 1) + if this_soc_family and not re.match(need_machine, this_soc_family): + raise bb.parse.SkipPackage("incompatible with machine %s" % this_machine) need_target = bb.data.getVar('COMPATIBLE_TARGET_SYS', d, 1) if need_target: |