diff options
| -rw-r--r-- | COPYING.MIT | 17 | ||||
| -rw-r--r-- | README | 61 | ||||
| -rw-r--r-- | conf/layer.conf | 14 |
3 files changed, 92 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 @@ | |||
| 1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 2 | of this software and associated documentation files (the "Software"), to deal | ||
| 3 | in the Software without restriction, including without limitation the rights | ||
| 4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 5 | copies of the Software, and to permit persons to whom the Software is | ||
| 6 | furnished to do so, subject to the following conditions: | ||
| 7 | |||
| 8 | The above copyright notice and this permission notice shall be included in | ||
| 9 | all copies or substantial portions of the Software. | ||
| 10 | |||
| 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 17 | THE SOFTWARE. | ||
| @@ -0,0 +1,61 @@ | |||
| 1 | meta-el-standard | ||
| 2 | =================================================================== | ||
| 3 | |||
| 4 | This layer contains distro customizations specific to the Enea Linux | ||
| 5 | Standard profile releases. | ||
| 6 | |||
| 7 | Dependencies | ||
| 8 | ============ | ||
| 9 | |||
| 10 | This layer depends on: | ||
| 11 | |||
| 12 | URI: git://git.yoctoproject.org/poky | ||
| 13 | branch: master | ||
| 14 | |||
| 15 | URI: git://git.enea.com/linux/meta-el-common | ||
| 16 | branch: master | ||
| 17 | |||
| 18 | |||
| 19 | Source code | ||
| 20 | =========== | ||
| 21 | |||
| 22 | git://git.enea.com/linux/meta-el-standard.git | ||
| 23 | |||
| 24 | |||
| 25 | Patches | ||
| 26 | ======= | ||
| 27 | |||
| 28 | Please submit any patches against the el-standard layer to the | ||
| 29 | linux-maintainers mailing list: linux-maintainers@enea.com | ||
| 30 | |||
| 31 | Maintainers: Enea Linux Team <linux-maintainers@enea.com> | ||
| 32 | |||
| 33 | |||
| 34 | Table | ||
| 35 | ================= | ||
| 36 | |||
| 37 | I. Adding the el-standard layer to your build | ||
| 38 | II. Misc | ||
| 39 | |||
| 40 | |||
| 41 | I. Adding the el-standard layer to your build | ||
| 42 | ================================================= | ||
| 43 | |||
| 44 | In order to use this layer, you need to make the build system aware of | ||
| 45 | it. | ||
| 46 | |||
| 47 | Assuming the el-standard layer exists at the top-level of your | ||
| 48 | yocto build tree, you can add it to the build system by adding the | ||
| 49 | location of the el-standard layer to bblayers.conf, along with any | ||
| 50 | other layers needed. e.g.: | ||
| 51 | |||
| 52 | |||
| 53 | BBLAYERS ?= " \ | ||
| 54 | /path/to/yocto/meta \ | ||
| 55 | /path/to/yocto/meta-poky \ | ||
| 56 | /path/to/yocto/meta-el-common \ | ||
| 57 | /path/to/yocto/meta-el-standard \ | ||
| 58 | " | ||
| 59 | |||
| 60 | II. Misc | ||
| 61 | ======== | ||
diff --git a/conf/layer.conf b/conf/layer.conf new file mode 100644 index 0000000..69d03c9 --- /dev/null +++ b/conf/layer.conf | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | # We have a conf and classes directory, add to BBPATH | ||
| 2 | BBPATH .= ":${LAYERDIR}" | ||
| 3 | |||
| 4 | # We have recipes-* directories, add to BBFILES | ||
| 5 | BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \ | ||
| 6 | ${LAYERDIR}/images/* \ | ||
| 7 | ${LAYERDIR}/packagegroups/* \ | ||
| 8 | ${LAYERDIR}/recipes-*/*/*.bbappend" | ||
| 9 | |||
| 10 | BBFILE_COLLECTIONS += "el-standard" | ||
| 11 | BBFILE_PATTERN_el-standard = "^${LAYERDIR}/" | ||
| 12 | BBFILE_PRIORITY_el-standard = "7" | ||
| 13 | LAYERDEPENDS_el-standard = "el-common" | ||
| 14 | |||
