Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 1 | meta-tpm layer |
| 2 | ============== |
| 3 | |
Andrew Geissler | a1a6aef | 2021-06-25 14:23:58 -0500 | [diff] [blame] | 4 | The bbappend files for some recipes (e.g. linux-yocto) in this layer need |
| 5 | to have 'tpm' in DISTRO_FEATURES to have effect. |
| 6 | To enable them, add in configuration file the following line. |
| 7 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 8 | DISTRO_FEATURES:append = " tmp" |
Andrew Geissler | a1a6aef | 2021-06-25 14:23:58 -0500 | [diff] [blame] | 9 | |
| 10 | If meta-tpm is included, but tpm is not enabled as a |
| 11 | distro feature a warning is printed at parse time: |
| 12 | |
| 13 | You have included the meta-tpm layer, but |
| 14 | 'tpm' has not been enabled in your DISTRO_FEATURES. Some bbappend files |
| 15 | and preferred version setting may not take effect. |
| 16 | |
| 17 | If you know what you are doing, this warning can be disabled by setting the following |
| 18 | variable in your configuration: |
| 19 | |
| 20 | SKIP_META_TPM_SANITY_CHECK = 1 |
| 21 | |
| 22 | |
Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 23 | This layer contains base TPM recipes. |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 24 | |
| 25 | Dependencies |
| 26 | ============ |
| 27 | |
| 28 | This layer depends on: |
| 29 | |
| 30 | URI: git://git.openembedded.org/openembedded-core |
| 31 | branch: master |
| 32 | revision: HEAD |
| 33 | prio: default |
| 34 | |
| 35 | URI: git://git.openembedded.org/meta-openembedded/meta-oe |
| 36 | branch: master |
| 37 | revision: HEAD |
| 38 | prio: default |
| 39 | |
| 40 | Adding the meta-tpm layer to your build |
| 41 | ======================================== |
| 42 | |
| 43 | In order to use this layer, you need to make the build system aware of |
| 44 | it. |
| 45 | |
| 46 | Assuming this layer exists at the top-level of your |
| 47 | yocto build tree, you can add it to the build system by adding the |
| 48 | location of the meta-tpm layer to bblayers.conf, along with any |
| 49 | other layers needed. e.g.: |
| 50 | |
| 51 | BBLAYERS ?= " \ |
| 52 | /path/to/oe-core/meta \ |
| 53 | /path/to/meta-openembedded/meta-oe \ |
| 54 | /path/to/layer/meta-tpm \ |
| 55 | |
| 56 | |
| 57 | Maintenance |
| 58 | ----------- |
| 59 | |
| 60 | Send pull requests, patches, comments or questions to yocto@yoctoproject.org |
| 61 | |
| 62 | When sending single patches, please using something like: |
| 63 | 'git send-email -1 --to yocto@yoctoproject.org --subject-prefix=meta-security][PATCH' |
| 64 | |
| 65 | These values can be set as defaults for this repository: |
| 66 | |
| 67 | $ git config sendemail.to yocto@yoctoproject.org |
| 68 | $ git config format.subjectPrefix meta-security][PATCH |
| 69 | |
| 70 | Now you can just do 'git send-email origin/master' to send all local patches. |
| 71 | |
| 72 | Maintainers: Armin Kuster <akuster808@gmail.com> |
| 73 | |
| 74 | |
| 75 | License |
| 76 | ======= |
| 77 | |
| 78 | All metadata is MIT licensed unless otherwise stated. Source code included |
| 79 | in tree for individual recipes is under the LICENSE stated in each recipe |
| 80 | (.bb file) unless otherwise stated. |