# HG changeset patch # User Rob Landley # Date 1309179234 18000 # Node ID f46279a3a48a81b5c9c83301cb1f2845ae9be1d8 # Parent f24c0deeed24df0c2fc60a516e1d28a68ad5a6cd Make i686-kvm actually use kvm. diff -r f24c0deeed24 -r f46279a3a48a sources/targets/i686-kvm/settings --- a/sources/targets/i686-kvm/settings Mon Jun 27 07:44:19 2011 -0500 +++ b/sources/targets/i686-kvm/settings Mon Jun 27 07:53:54 2011 -0500 @@ -27,10 +27,9 @@ emulator_command() { -# echo qemu -cpu pentium $(qemu_defaults "$@") echo "if [ \"\$WITH_HDC\"X\"\" != \"X\" ]; then WITH_HDC=\"-drive file=\$HDC,if=virtio\"; fi" echo "if [ \"\$WITH_HDB\"X\"\" != \"X\" ]; then WITH_HDB=\"-drive file=\$HDB,if=virtio\"; fi" - echo -n "qemu -cpu pentium -nographic -no-reboot -kernel $KERNEL \$WITH_HDC \$WITH_HDB" + echo -n "kvm -nographic -no-reboot -kernel $KERNEL \$WITH_HDC \$WITH_HDB" [ "$SYSIMAGE_TYPE" != "initramfs" ] && echo -n " -drive file=$IMAGE,if=virtio" echo -n " -append \"$(kernel_cmdline)\" \$QEMU_EXTRA -net nic,model=virtio -net user" }