mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

4.4 is available in oe-core, and will be built by default in many configurations. That leaves us either needing to force the preferred version or copy our config to 4.4. This is a direct clone of the 4.1 config to 4.4, and is currently untested, but forms a baseline for more updates. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
20 lines
655 B
Plaintext
20 lines
655 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI += "file://xt-checksum.scc \
|
|
file://ebtables.scc \
|
|
file://vswitch.scc \
|
|
file://lxc.scc \
|
|
"
|
|
KERNEL_FEATURES_append = " features/kvm/qemu-kvm-enable.scc"
|
|
|
|
KERNEL_MODULE_AUTOLOAD += "openvswitch"
|
|
KERNEL_MODULE_AUTOLOAD += "kvm"
|
|
KERNEL_MODULE_AUTOLOAD += "kvm-amd"
|
|
KERNEL_MODULE_AUTOLOAD += "kvm-intel"
|
|
|
|
# aufs kernel support required for xen-image-minimal
|
|
KERNEL_FEATURES_append += "${@base_contains('DISTRO_FEATURES', 'aufs', ' features/aufs/aufs-enable.scc', '', d)}"
|
|
|
|
# xen kernel support
|
|
SRC_URI += "${@base_contains('DISTRO_FEATURES', 'xen', ' file://xen.scc', '', d)}"
|