Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 1 | meta-virtualization |
| 2 | =================== |
| 3 | |
| 4 | This layer provides support for building Xen, KVM, Libvirt, and associated |
| 5 | packages necessary for constructing OE-based virtualized solutions. |
| 6 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 7 | The bbappend files for some recipe (e.g. linux-yocto) in this layer needs to |
| 8 | have 'virtualization' in DISTRO_FEATURES to have effect. To enable them, add |
| 9 | in configuration file the following line. |
| 10 | |
| 11 | DISTRO_FEATURES_append = " virtualization" |
| 12 | |
| 13 | If meta-virtualization is included, but virtualization is not enabled as a |
| 14 | distro feature a warning is printed at parse time: |
| 15 | |
| 16 | You have included the meta-virtualization layer, but |
| 17 | 'virtualization' has not been enabled in your DISTRO_FEATURES. Some bbappend files |
| 18 | may not take effect. See the meta-virtualization README for details on enabling |
| 19 | virtualization support. |
| 20 | |
| 21 | If you know what you are doing, this warning can be disabled by setting the following |
| 22 | variable in your configuration: |
| 23 | |
| 24 | SKIP_META_VIRT_SANITY_CHECK = 1 |
| 25 | |
| 26 | Also note that there are kvm and xen specific distro flags/features that depending |
| 27 | on your use case. |
| 28 | |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 29 | Dependencies |
| 30 | ------------ |
| 31 | This layer depends on: |
| 32 | |
| 33 | URI: git://github.com/openembedded/openembedded-core.git |
| 34 | branch: master |
| 35 | revision: HEAD |
| 36 | prio: default |
| 37 | |
| 38 | URI: git://github.com/openembedded/meta-openembedded.git |
| 39 | branch: master |
| 40 | revision: HEAD |
| 41 | layers: meta-oe |
| 42 | meta-networking |
| 43 | meta-filesystems |
| 44 | meta-python |
| 45 | |
| 46 | URI: git://github.com/errordeveloper/oe-meta-go.git |
| 47 | branch: master |
| 48 | revision: HEAD |
| 49 | |
| 50 | BBFILE_PRIORITY_openembedded-layer = "4" |
| 51 | |
| 52 | Required for Xen XSM policy: |
| 53 | URI: git://git.yoctoproject.org/meta-selinux |
| 54 | branch: master |
| 55 | revision: HEAD |
| 56 | prio: default |
| 57 | |
| 58 | Maintenance |
| 59 | ----------- |
| 60 | |
| 61 | Send pull requests, patches, comments or questions to meta-virtualization@yoctoproject.org |
| 62 | |
| 63 | Maintainers: Raymond Danks <ray.danks@se-eng.com> |
| 64 | Bruce Ashfield <bruce.ashfield@gmail.com> |
| 65 | |
| 66 | When sending single patches, please using something like: |
Patrick Williams | e69d235 | 2017-02-23 20:56:04 -0600 | [diff] [blame] | 67 | $ git send-email -1 --to meta-virtualization@yoctoproject.org --subject-prefix='meta-virtualization][PATCH' |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 68 | |
| 69 | License |
| 70 | ------- |
| 71 | |
| 72 | All metadata is MIT licensed unless otherwise stated. Source code included |
| 73 | in tree for individual recipes is under the LICENSE stated in each recipe |
| 74 | (.bb file) unless otherwise stated. |
| 75 | |