LLVM clientctl: activate the KVM module only if available

This commit is contained in:
Erik van der Kouwe 2014-06-22 00:10:46 -07:00 committed by Lionel Sambuc
parent d7b27ed4f9
commit ca39637dcc

View file

@ -13,8 +13,10 @@ case "$mode" in
'run')
if which kvm > /dev/null; then
hypervisor=kvm
else
elif [ -e /dev/kvm ]; then
hypervisor="qemu-system-i386 --enable-kvm"
else
hypervisor=qemu-system-i386
fi
(cd ../../../obj.i386/destdir.i386/multiboot && $hypervisor -nographic -kernel kernel -append "console=tty00 rootdevname=c0d0p1" -initrd "mod01_ds,mod02_rs,mod03_pm,mod04_sched,mod05_vfs,mod06_memory,mod07_tty,mod08_mfs,mod09_vm,mod10_pfs,mod11_init" -hda $IMAGE)
;;