diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-10-08 20:05:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-20 17:41:03 +0100 |
commit | 4df212e9c2a1dd7c80d180fd13b67e9f2799d3e1 (patch) | |
tree | 1639f0c0f38e5f497a2169c40574b55b9e414d03 /meta/classes | |
parent | e02c0d809732bed3d170880c6faedafce8c60c21 (diff) | |
download | openembedded-core-4df212e9c2a1dd7c80d180fd13b67e9f2799d3e1.tar.gz openembedded-core-4df212e9c2a1dd7c80d180fd13b67e9f2799d3e1.tar.bz2 openembedded-core-4df212e9c2a1dd7c80d180fd13b67e9f2799d3e1.zip |
oe.packagegroup: add code for package groups (sync from OE)
This includes some utility functions for dealing with groups of packages
defined in the metadata. Metadata syntax:
PACKAGE_GROUP_<group> = "<list of packages>"
If the packages in the group are optional:
PACKAGE_GROUP_<group>[optional] = "1"
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 7950bc3975..8f4ef1e64e 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -10,7 +10,7 @@ inherit metadata_scm inherit buildstats inherit logging -OE_IMPORTS += "os sys time oe.path oe.utils oe.data" +OE_IMPORTS += "os sys time oe.path oe.utils oe.data oe.packagegroup" OE_IMPORTS[type] = "list" def oe_import(d): |