Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 1 | Meta-security |
| 2 | ============= |
| 3 | |
| 4 | This layer provides security tools, hardening tools for Linux kernels |
| 5 | and libraries for implementing security mechanisms. |
| 6 | |
| 7 | Dependencies |
| 8 | ============ |
| 9 | |
| 10 | This layer depends on: |
| 11 | |
| 12 | URI: git://git.openembedded.org/openembedded-core |
| 13 | branch: master |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 14 | |
| 15 | URI: git://git.openembedded.org/meta-openembedded/meta-oe |
| 16 | branch: master |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 17 | |
| 18 | URI: git://git.openembedded.org/meta-openembedded/meta-perl |
| 19 | branch: master |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 20 | |
Andrew Geissler | 1fe918a | 2020-05-15 14:16:47 -0500 | [diff] [blame] | 21 | URI: git://git.openembedded.org/meta-openembedded/meta-python |
| 22 | branch: master |
Andrew Geissler | 1fe918a | 2020-05-15 14:16:47 -0500 | [diff] [blame] | 23 | |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 24 | URI: git://git.openembedded.org/meta-openembedded/meta-networking |
| 25 | branch: master |
Andrew Geissler | f1e4406 | 2021-04-15 15:52:46 -0500 | [diff] [blame] | 26 | |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 27 | |
| 28 | Adding the security layer to your build |
| 29 | ======================================== |
| 30 | |
| 31 | In order to use this layer, you need to make the build system aware of |
| 32 | it. |
| 33 | |
| 34 | Assuming the security layer exists at the top-level of your |
| 35 | yocto build tree, you can add it to the build system by adding the |
| 36 | location of the security layer to bblayers.conf, along with any |
| 37 | other layers needed. e.g.: |
| 38 | |
| 39 | BBLAYERS ?= " \ |
| 40 | /path/to/oe-core/meta \ |
| 41 | /path/to/meta-openembedded/meta-oe \ |
| 42 | /path/to/meta-openembedded/meta-perl \ |
| 43 | /path/to/meta-openembedded/meta-python \ |
| 44 | /path/to/meta-openembedded/meta-networking \ |
Andrew Geissler | f1e4406 | 2021-04-15 15:52:46 -0500 | [diff] [blame] | 45 | /path/to/layer/meta-security " |
| 46 | |
| 47 | Optional Rust dependancy |
| 48 | ====================================== |
| 49 | If you want to use the latest Suricata that needs rust, you will need to clone |
| 50 | |
| 51 | URI: https://github.com/meta-rust/meta-rust.git |
| 52 | branch: master |
| 53 | |
| 54 | BBLAYERS += "/path/to/layer/meta-rust" |
| 55 | |
| 56 | This will activate the dynamic-layer mechanism and pull in the newer suricata |
| 57 | |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 58 | |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 59 | |
| 60 | Maintenance |
Andrew Geissler | f1e4406 | 2021-04-15 15:52:46 -0500 | [diff] [blame] | 61 | ====================================== |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 62 | |
Brad Bishop | 5ead1e5 | 2019-12-06 10:10:29 -0500 | [diff] [blame] | 63 | Send pull requests, patches, comments or questions to yocto@lists.yoctoproject.org |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 64 | |
| 65 | When sending single patches, please using something like: |
Brad Bishop | 5ead1e5 | 2019-12-06 10:10:29 -0500 | [diff] [blame] | 66 | 'git send-email -1 --to yocto@lists.yoctoproject.org --subject-prefix=meta-security][PATCH' |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 67 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 68 | These values can be set as defaults for this repository: |
| 69 | |
Brad Bishop | 5ead1e5 | 2019-12-06 10:10:29 -0500 | [diff] [blame] | 70 | $ git config sendemail.to yocto@lists.yoctoproject.org |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 71 | $ git config format.subjectPrefix meta-security][PATCH |
| 72 | |
| 73 | Now you can just do 'git send-email origin/master' to send all local patches. |
| 74 | |
Andrew Geissler | 1fe918a | 2020-05-15 14:16:47 -0500 | [diff] [blame] | 75 | For pull requests, please use create-pull-request and send-pull-request. |
| 76 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 77 | Maintainers: Armin Kuster <akuster808@gmail.com> |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 78 | |
| 79 | |
| 80 | License |
| 81 | ======= |
| 82 | |
| 83 | All metadata is MIT licensed unless otherwise stated. Source code included |
| 84 | in tree for individual recipes is under the LICENSE stated in each recipe |
| 85 | (.bb file) unless otherwise stated. |