diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-05-28 13:25:40 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-05-28 13:25:40 +0000 |
commit | 453a78aecefc9e7befce89d42b83dd51c1db6cd7 (patch) | |
tree | 94549de62f39d8265c236351af757e06576aede9 /packages/tasks/task-base.bb | |
parent | ca79187d539606f0f6f967f6ef54dab69a145024 (diff) |
task-base: really add task-base-extended, fixed it's code
task-base-extended code use sets which are Python 2.4 thing but it has
untested workaround for Python 2.3
Diffstat (limited to 'packages/tasks/task-base.bb')
-rw-r--r-- | packages/tasks/task-base.bb | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/packages/tasks/task-base.bb b/packages/tasks/task-base.bb index cd4054981f..a4579cf8c3 100644 --- a/packages/tasks/task-base.bb +++ b/packages/tasks/task-base.bb @@ -1,9 +1,10 @@ DESCRIPTION = "Merge machine and distro options to create a basic machine task/package" -PR = "r33" +PR = "r34" PROVIDES = "${PACKAGES}" PACKAGES = 'task-boot \ task-base \ + task-base-extended \ task-distro-base \ task-machine-base \ \ @@ -127,17 +128,21 @@ ADD_WIFI = "" ADD_BT = "" python __anonymous () { - import bb # If Distro want wifi and machine feature wifi/pci/pcmcia/usbhost (one of them) # then include task-base-wifi in task-base - distro_features = bb.data.getVar("DISTRO_FEATURES", d, 1) - machine_features= bb.data.getVar("MACHINE_FEATURES", d, 1) + import bb + + if not hasattr(__builtins__, 'set'): + from sets import Set as set + + distro_features = set(bb.data.getVar("DISTRO_FEATURES", d, 1).split()) + machine_features= set(bb.data.getVar("MACHINE_FEATURES", d, 1).split()) - if distro_features.find("bluetooth") and not machine_features.find("bluetooth") and (machine_features.find("pcmcia") or machine_features.find("pci") or machine_features.find("usbhost")): + if "bluetooth" in distro_features and not "bluetooth" in machine_features and ("pcmcia" in machine_features or "pci" in machine_features or "usbhost" in machine_features): bb.data.setVar("ADD_BT", "task-base-bluetooth", d) - if distro_features.find("wifi") and not machine_features.find("wifi") and (machine_features.find("pcmcia") or machine_features.find("pci") or machine_features.find("usbhost")): + if "wifi" in distro_features and not "wifi" in machine_features and ("pcmcia" in machine_features or "pci" in machine_features or "usbhost" in machine_features): bb.data.setVar("ADD_WIFI", "task-base-wifi", d) } |