diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-07-21 19:20:52 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-24 00:01:28 +0100 |
commit | 6da4a6688cbd90acb949d68247d9ab9c676021cf (patch) | |
tree | 4ab35dd7fbdec010fa56289bd0097f1b467986de /meta-lsb/conf | |
parent | 18b33a2ce54e4272203c2eb42fbaabc879ccb8c5 (diff) | |
download | openembedded-core-6da4a6688cbd90acb949d68247d9ab9c676021cf.tar.gz openembedded-core-6da4a6688cbd90acb949d68247d9ab9c676021cf.tar.bz2 openembedded-core-6da4a6688cbd90acb949d68247d9ab9c676021cf.tar.xz openembedded-core-6da4a6688cbd90acb949d68247d9ab9c676021cf.zip |
meta-lsb: Add basic infrastructure to create lsb image
Move tar and at to meta-lsb
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta-lsb/conf')
-rw-r--r-- | meta-lsb/conf/layer.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta-lsb/conf/layer.conf b/meta-lsb/conf/layer.conf new file mode 100644 index 000000000..1ef5c73a8 --- /dev/null +++ b/meta-lsb/conf/layer.conf @@ -0,0 +1,10 @@ +# We have a conf and classes directory, add to BBPATH +BBPATH := "${BBPATH}:${LAYERDIR}" + +# We have a packages directory, add to BBFILES +BBFILES := "${BBFILES} ${LAYERDIR}/packages/*/*.bb" + +BBFILE_COLLECTIONS += "lsb" +BBFILE_PATTERN_lsb := "^${LAYERDIR}/" +BBFILE_PRIORITY_lsb = "5" + |