mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

Now that the 3.14 kernel has been introduced and 3.8 dropped from oe-core, we need to adjust our configuration fragments accordingly. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
20 lines
657 B
Plaintext
20 lines
657 B
Plaintext
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI += "file://xt-checksum.scc \
|
|
file://ebtables.scc \
|
|
file://vswitch.scc \
|
|
file://lxc.scc \
|
|
"
|
|
module_autoload_openvswitch = "openvswitch"
|
|
KERNEL_FEATURES_append = " features/kvm/qemu-kvm-enable.scc"
|
|
|
|
module_autoload_kvm = "kvm"
|
|
module_autoload_kvm-amd = "kvm-amd"
|
|
module_autoload_kvm-intel = "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)}"
|