qemu/kvm.modules
2012-01-27 13:37:44 -06:00

14 lines
368 B
Bash
Executable File

#!/bin/sh
if [ $(grep -c vmx /proc/cpuinfo) -ne 0 ]; then
modprobe -b kvm-intel >/dev/null 2>&1
modprobe -b virtio-net >/dev/null 2>&1
modprobe -b vhost-net >/dev/null 2>&1
fi
if [ $(grep -c svm /proc/cpuinfo) -ne 0 ]; then
modprobe -b kvm-amd >/dev/null 2>&1
modprobe -b virtio-net >/dev/null 2>&1
modprobe -b vhost-net >/dev/null 2>&1
fi