summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal13
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 041464dd7c..a21ea93c9b 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -236,6 +236,7 @@ fi
236case "$MACHINE" in 236case "$MACHINE" in
237 "qemuarm") ;; 237 "qemuarm") ;;
238 "qemumips") ;; 238 "qemumips") ;;
239 "qemumipsel") ;;
239 "qemumips64") ;; 240 "qemumips64") ;;
240 "qemush4") ;; 241 "qemush4") ;;
241 "qemuppc") ;; 242 "qemuppc") ;;
@@ -375,12 +376,12 @@ if [ "$MACHINE" = "spitz" ]; then
375 fi 376 fi
376fi 377fi
377 378
378if [ "$MACHINE" = "qemumips" -o "$MACHINE" = "qemumips64" ]; then 379if [ "$MACHINE" = "qemumips" -o "$MACHINE" = "qemumipsel" -o "$MACHINE" = "qemumips64" ]; then
379 if [ "$MACHINE" = "qemumips64" ]; then 380 case "$MACHINE" in
380 QEMU=qemu-system-mips64 381 qemumips) QEMU=qemu-system-mips ;;
381 else 382 qemumipsel) QEMU=qemu-system-mipsel ;;
382 QEMU=qemu-system-mips 383 qemumips64) QEMU=qemu-system-mips64 ;;
383 fi 384 esac
384 MACHINE_SUBTYPE=malta 385 MACHINE_SUBTYPE=malta
385 QEMU_UI_OPTIONS="-vga cirrus $QEMU_UI_OPTIONS" 386 QEMU_UI_OPTIONS="-vga cirrus $QEMU_UI_OPTIONS"
386 if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then 387 if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then