changeset 1405:f46279a3a48a

Make i686-kvm actually use kvm.
author Rob Landley <rob@landley.net>
date Mon, 27 Jun 2011 07:53:54 -0500
parents f24c0deeed24
children aca2150c9531
files sources/targets/i686-kvm/settings
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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"
 }