summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOla Redell <ola.redell@retotech.se>2017-10-20 15:26:51 +0200
committerOla Redell <ola.redell@retotech.se>2017-10-20 15:26:51 +0200
commit898b980a4dd50a6db88efba77f015225eda144c3 (patch)
treed851bcfcb65be7b4152940a0f4c20f613b742bdd
downloadmeta-jailhouse-898b980a4dd50a6db88efba77f015225eda144c3.tar.gz
Initial commit
-rw-r--r--COPYING.MIT17
-rw-r--r--README64
-rw-r--r--conf/layer.conf10
3 files changed, 91 insertions, 0 deletions
diff --git a/COPYING.MIT b/COPYING.MIT
new file mode 100644
index 0000000..89de354
--- /dev/null
+++ b/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/README b/README
new file mode 100644
index 0000000..013b823
--- /dev/null
+++ b/README
@@ -0,0 +1,64 @@
1This README file contains information on the contents of the
2jailhouse layer.
3
4Please see the corresponding sections below for details.
5
6
7Dependencies
8============
9
10This layer depends on:
11
12 URI: git://git.openembedded.org/bitbake
13 branch: master
14
15 URI: git://git.openembedded.org/openembedded-core
16 layers: meta
17 branch: master
18
19 URI: git://git.yoctoproject.org/xxxx
20 layers: xxxx
21 branch: master
22
23
24Patches
25=======
26
27Please submit any patches against the jailhouse layer to the
28xxxx mailing list (xxxx@zzzz.org) and cc: the maintainer:
29
30Maintainer: XXX YYYYYY <xxx.yyyyyy@zzzzz.com>
31
32
33Table of Contents
34=================
35
36 I. Adding the jailhouse layer to your build
37 II. Misc
38
39
40I. Adding the jailhouse layer to your build
41=================================================
42
43--- replace with specific instructions for the jailhouse layer ---
44
45In order to use this layer, you need to make the build system aware of
46it.
47
48Assuming the jailhouse layer exists at the top-level of your
49yocto build tree, you can add it to the build system by adding the
50location of the jailhouse layer to bblayers.conf, along with any
51other layers needed. e.g.:
52
53 BBLAYERS ?= " \
54 /path/to/yocto/meta \
55 /path/to/yocto/meta-poky \
56 /path/to/yocto/meta-yocto-bsp \
57 /path/to/yocto/meta-jailhouse \
58 "
59
60
61II. Misc
62========
63
64--- replace with specific information about the jailhouse layer ---
diff --git a/conf/layer.conf b/conf/layer.conf
new file mode 100644
index 0000000..c81174e
--- /dev/null
+++ b/conf/layer.conf
@@ -0,0 +1,10 @@
1# We have a conf and classes directory, add to BBPATH
2BBPATH .= ":${LAYERDIR}"
3
4# We have recipes-* directories, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
6 ${LAYERDIR}/recipes-*/*/*.bbappend"
7
8BBFILE_COLLECTIONS += "jailhouse"
9BBFILE_PATTERN_jailhouse = "^${LAYERDIR}/"
10BBFILE_PRIORITY_jailhouse = "6"