summaryrefslogtreecommitdiffstats
path: root/meta-security-compliance
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2017-09-28 19:38:47 -0700
committerArmin Kuster <akuster808@gmail.com>2017-09-30 11:47:20 -0700
commitc1781db5be57f0ff35c14f7982698dbbdcdf09f7 (patch)
tree68cf3ed7e7d98f5ff3d341da7a5d2d58d260a955 /meta-security-compliance
parentd34afdfbf5e0567af9cad86805c48d02b7e8d573 (diff)
downloadmeta-security-c1781db5be57f0ff35c14f7982698dbbdcdf09f7.tar.gz
meta-security-compliance: add new layer for compliance and audit applications
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-security-compliance')
-rw-r--r--meta-security-compliance/README41
-rw-r--r--meta-security-compliance/conf/layer.conf13
2 files changed, 54 insertions, 0 deletions
diff --git a/meta-security-compliance/README b/meta-security-compliance/README
new file mode 100644
index 0000000..b29c143
--- /dev/null
+++ b/meta-security-compliance/README
@@ -0,0 +1,41 @@
1# Meta-security-compliance
2
3This layer is meant to contain programs to help in security compliance and auditing
4
5
6Dependencies
7============
8
9This layer depends on:
10
11 URI: git://git.openembedded.org/bitbake
12 branch: master
13
14 URI: git://git.openembedded.org/openembedded-core
15 layers: meta
16 branch: master
17
18or
19
20 URI: git://git.yoctoproject.org/poky
21 branch: master
22
23
24
25Maintenance
26-----------
27
28Send pull requests, patches, comments or questions to yocto@yoctoproject.org
29
30When sending single patches, please using something like:
31'git send-email -1 --to yocto@yoctoproject.org --subject-prefix=meta-security][PATCH'
32
33Layer Maintainer: Armin Kuster <akuster@mvista.com>
34
35
36License
37=======
38
39All metadata is MIT licensed unless otherwise stated. Source code included
40in tree for individual recipes is under the LICENSE stated in each recipe
41(.bb file) unless otherwise stated.
diff --git a/meta-security-compliance/conf/layer.conf b/meta-security-compliance/conf/layer.conf
new file mode 100644
index 0000000..b1b9727
--- /dev/null
+++ b/meta-security-compliance/conf/layer.conf
@@ -0,0 +1,13 @@
1# We have a conf and classes directory, add to BBPATH
2BBPATH .= ":${LAYERDIR}"
3
4# We have a recipes directory, add to BBFILES
5BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend ${LAYERDIR}/classes/*.bbclass"
6
7BBFILE_COLLECTIONS += "scanners-layer"
8BBFILE_PATTERN_scanners-layer = "^${LAYERDIR}/"
9BBFILE_PRIORITY_scanners-layer = "6"
10
11LAYERDEPENDS_scanners-layer = " \
12 core \
13"