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 | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 7 | The bbappend files for some recipes (e.g. linux-yocto) in this layer need to |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 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 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 26 | Depending on your use case, there are other distro features in meta-virtualization |
| 27 | that may also be enabled: |
| 28 | |
| 29 | - xen: enables xen functionality in various packages (kernel, libvirt, etc) |
| 30 | - kvm: enables KVM configurations in the kernel and autoloads modules |
| 31 | - aufs: enables aufs support in docker and linux-yocto |
| 32 | - x11: enable xen and libvirt functionality related to x11 |
| 33 | - selinux: enables functionality in libvirt and lxc |
| 34 | - systemd: enable systemd services and unit files (for recipes for support) |
| 35 | - sysvinit: enable sysvinit scripts (for recipes with support) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 36 | |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 37 | Dependencies |
| 38 | ------------ |
| 39 | This layer depends on: |
| 40 | |
| 41 | URI: git://github.com/openembedded/openembedded-core.git |
| 42 | branch: master |
| 43 | revision: HEAD |
| 44 | prio: default |
| 45 | |
| 46 | URI: git://github.com/openembedded/meta-openembedded.git |
| 47 | branch: master |
| 48 | revision: HEAD |
| 49 | layers: meta-oe |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 50 | meta-networking |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 51 | meta-filesystems |
| 52 | meta-python |
| 53 | |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 54 | BBFILE_PRIORITY_openembedded-layer = "4" |
| 55 | |
| 56 | Required for Xen XSM policy: |
| 57 | URI: git://git.yoctoproject.org/meta-selinux |
| 58 | branch: master |
| 59 | revision: HEAD |
| 60 | prio: default |
| 61 | |
| 62 | Maintenance |
| 63 | ----------- |
| 64 | |
| 65 | Send pull requests, patches, comments or questions to meta-virtualization@yoctoproject.org |
| 66 | |
| 67 | Maintainers: Raymond Danks <ray.danks@se-eng.com> |
| 68 | Bruce Ashfield <bruce.ashfield@gmail.com> |
| 69 | |
| 70 | When sending single patches, please using something like: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 71 | $ git send-email -1 -M --to meta-virtualization@yoctoproject.org --subject-prefix='meta-virtualization][PATCH' |
Patrick Williams | d849ec7 | 2016-08-17 14:59:38 -0500 | [diff] [blame] | 72 | |
| 73 | License |
| 74 | ------- |
| 75 | |
| 76 | All metadata is MIT licensed unless otherwise stated. Source code included |
| 77 | in tree for individual recipes is under the LICENSE stated in each recipe |
| 78 | (.bb file) unless otherwise stated. |
| 79 | |