changeset 1468:13b2bd9781a3

QEMU 1.0 changed the 'qemu' binary to 'qemu-i386', change run-emulator.sh for x86 to match.
author Rob Landley <rob@landley.net>
date Sat, 03 Dec 2011 17:50:58 -0600
parents 38e80b18fe8b
children 9a3f7ada5cb1
files sources/targets/i486 sources/targets/i586 sources/targets/i686
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/sources/targets/i486	Fri Dec 02 07:26:24 2011 -0600
+++ b/sources/targets/i486	Sat Dec 03 17:50:58 2011 -0600
@@ -36,5 +36,5 @@
 
 emulator_command()
 {
-  echo qemu -cpu 486 $(qemu_defaults "$@")
+  echo qemu-i386 -cpu 486 $(qemu_defaults "$@")
 }
--- a/sources/targets/i586	Fri Dec 02 07:26:24 2011 -0600
+++ b/sources/targets/i586	Sat Dec 03 17:50:58 2011 -0600
@@ -34,5 +34,5 @@
 
 emulator_command()
 {
-  echo qemu -cpu pentium $(qemu_defaults "$@")
+  echo qemu-i386 -cpu pentium $(qemu_defaults "$@")
 }
--- a/sources/targets/i686	Fri Dec 02 07:26:24 2011 -0600
+++ b/sources/targets/i686	Sat Dec 03 17:50:58 2011 -0600
@@ -28,6 +28,6 @@
 
 emulator_command()
 {
-  echo qemu -cpu pentium3 $(qemu_defaults "$@") \
+  echo qemu-i386 -cpu pentium3 $(qemu_defaults "$@") \
     -net nic,model=e1000 -net user
 }