summaryrefslogtreecommitdiffstats
path: root/meta-multimedia
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-02-24 13:52:03 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2012-02-24 13:53:17 +0100
commit2eaec194016ba357bb02db8859b2b3737d759865 (patch)
treefbf6ef6d2cfc7f2819a417ad05191bb529ed6607 /meta-multimedia
parenta04e14f407ccff319280edab69ffd8dfd4b206cc (diff)
downloadmeta-openembedded-2eaec194016ba357bb02db8859b2b3737d759865.tar.gz
meta-multimedia: initial add
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-multimedia')
-rw-r--r--meta-multimedia/COPYING.MIT17
-rw-r--r--meta-multimedia/README20
-rw-r--r--meta-multimedia/conf/layer.conf25
3 files changed, 62 insertions, 0 deletions
diff --git a/meta-multimedia/COPYING.MIT b/meta-multimedia/COPYING.MIT
new file mode 100644
index 000000000..fb950dc69
--- /dev/null
+++ b/meta-multimedia/COPYING.MIT
@@ -0,0 +1,17 @@
1Permission is hereby granted, free of charge, to any person obtaining a copy
2of this software and associated documentation files (the "Software"), to deal
3in the Software without restriction, including without limitation the rights
4to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5copies of the Software, and to permit persons to whom the Software is
6furnished to do so, subject to the following conditions:
7
8The above copyright notice and this permission notice shall be included in
9all copies or substantial portions of the Software.
10
11THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
17THE SOFTWARE.
diff --git a/meta-multimedia/README b/meta-multimedia/README
new file mode 100644
index 000000000..a60a7bccf
--- /dev/null
+++ b/meta-multimedia/README
@@ -0,0 +1,20 @@
1This layer depends on:
2
3URI: git://git.openembedded.org/openembedded-core
4branch: master
5revision: HEAD
6
7And optionally:
8
9URI: git://git.openembedded.org/meta-openembedded/meta-oe
10branch: master
11revision: HEAD
12
13Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-multimedia]' in the subject'
14
15When sending single patches, please use something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix meta-multimedia'
16
17You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.
18
19Main layer maintainer: Koen Kooi <koen@dominion.thruhere.net>
20
diff --git a/meta-multimedia/conf/layer.conf b/meta-multimedia/conf/layer.conf
new file mode 100644
index 000000000..64a0a443c
--- /dev/null
+++ b/meta-multimedia/conf/layer.conf
@@ -0,0 +1,25 @@
1# It really depends on order of the layers appearing in BBLAYERS
2# variable in toplevel bblayers.conf file, where bitbake will search
3# for .inc files and others where bitbake uses BBPATH since it will
4# search the directories from first to last as specified in BBPATH
5# Therefore if you want a given layer to be considered high priority
6# for the .inc and .conf etc. then consider it adding at the beginning
7# of BBPATH. For bblayers bitbake will use BBFILES_PRIORITY to resolve
8# the recipe contention so the order of directories in BBFILES does
9# not matter.
10
11# We have a conf and classes directory, append to BBPATH
12BBPATH .= ":${LAYERDIR}"
13
14# We have a recipes directory, add to BBFILES
15BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
16
17BBFILE_COLLECTIONS += "multimedia-layer"
18BBFILE_PATTERN_multimedia-layer := "^${LAYERDIR}/"
19
20# Define the priority for recipes (.bb files) from this layer,
21# choosing carefully how this layer interacts with all of the
22# other layers.
23
24BBFILE_PRIORITY_multimedia-layer = "6"
25