summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README21
1 files changed, 19 insertions, 2 deletions
diff --git a/README b/README
index 49fda10c..7d842329 100644
--- a/README
+++ b/README
@@ -4,10 +4,27 @@ meta-virtualization
4This layer provides support for building Xen, KVM, Libvirt, and associated 4This layer provides support for building Xen, KVM, Libvirt, and associated
5packages necessary for constructing OE-based virtualized solutions. 5packages necessary for constructing OE-based virtualized solutions.
6 6
7The bbappend files for some recipe (e.g. linux-yocto) in this layer need to 7The bbappend files for some recipe (e.g. linux-yocto) in this layer needs to
8have 'virtualization' in DISTRO_FEATURES to have effect. To enable them, add 8have 'virtualization' in DISTRO_FEATURES to have effect. To enable them, add
9in configuration file the following line. 9in configuration file the following line.
10DISTRO_FEATURES_append = " virtualization" 10
11 DISTRO_FEATURES_append = " virtualization"
12
13If meta-virtualization is included, but virtualization is not enabled as a
14distro 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
21If you know what you are doing, this warning can be disabled by setting the following
22variable in your configuration:
23
24 SKIP_META_VIRT_SANITY_CHECK = 1
25
26Also note that there are kvm and xen specific distro flags/features that depending
27on your use case.
11 28
12Dependencies 29Dependencies
13------------ 30------------