summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2016-02-03 13:08:39 +0100
committerAdrian Dudau <adrian.dudau@enea.com>2016-02-05 12:35:48 +0100
commit45d2e484f1262f1d5f5e3602f1e0fa5f6f88abf9 (patch)
tree84b2862e5d11ed3fdb4603a46056cc9c8849e5e3
downloadmeta-enea-bsp-common-45d2e484f1262f1d5f5e3602f1e0fa5f6f88abf9.tar.gz
intialize layer
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
-rw-r--r--COPYING.MIT17
-rw-r--r--README56
-rw-r--r--conf/layer.conf12
3 files changed, 85 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..109c17a
--- /dev/null
+++ b/README
@@ -0,0 +1,56 @@
1meta-enea-bsp-base
2===================================================================
3
4This layer is contains Enea BSP customizations common to all architecures
5supported by Enea Linux.
6
7Dependencies
8============
9
10This layer depends on:
11
12 URI: git://git.yoctoproject.org/poky
13 branch: master
14 revision: HEAD
15
16
17Source code
18===========
19
20git://git.enea.com/linux/meta-enea-bsp-base.git
21
22
23Patches
24=======
25
26Please submit any patches against the enea-bsp-ppc layer to the
27linux-maintainers mailing list: linux-maintainers@enea.com
28
29Maintainers: Enea Linux Team <linux-maintainers@enea.com>
30
31
32Table
33=================
34
35 I. Adding the enea-bsp-base layer to your build
36 II. Misc
37
38
39I. Adding the enea-bsp-base layer to your build
40=================================================
41
42In order to use this layer, you need to make the build system aware of
43it.
44
45Assuming the enea-bsp-base layer exists at the top-level of your
46yocto build tree, you can add it to the build system by adding the
47location of the enea-bsp-base layer to bblayers.conf, along with any
48other layers needed. e.g.:
49
50
51 BBLAYERS ?= " \
52 /path/to/yocto/meta \
53 "
54
55II. Misc
56========
diff --git a/conf/layer.conf b/conf/layer.conf
new file mode 100644
index 0000000..58c8466
--- /dev/null
+++ b/conf/layer.conf
@@ -0,0 +1,12 @@
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}/images/* \
7 ${LAYERDIR}/packagegroups/* \
8 ${LAYERDIR}/recipes-*/*/*.bbappend"
9
10BBFILE_COLLECTIONS += "enea-bsp-base"
11BBFILE_PATTERN_enea-bsp-base = "^${LAYERDIR}/"
12BBFILE_PRIORITY_enea-bsp-base = "5"