summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-xscripts/runqemu-internal4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 89a1e1ba27..6fa93c9d07 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -593,12 +593,12 @@ if [ "$MACHINE" = "qemuzynq" ]; then
593 fi 593 fi
594fi 594fi
595 595
596if [ "x$RAMFS" = "xtrue" ]; then 596if [ "$FSTYPE" = "cpio.gz" ]; then
597 QEMUOPTIONS="-initrd $ROOTFS -nographic" 597 QEMUOPTIONS="-initrd $ROOTFS -nographic"
598 KERNCMDLINE="root=/dev/ram0 console=ttyS0 debugshell" 598 KERNCMDLINE="root=/dev/ram0 console=ttyS0 debugshell"
599fi 599fi
600 600
601if [ "x$ISOFS" = "xtrue" ]; then 601if [ "$FSTYPE" = "iso" ]; then
602 QEMUOPTIONS="$QEMU_NETWORK_CMD -cdrom $ROOTFS $QEMU_UI_OPTIONS" 602 QEMUOPTIONS="$QEMU_NETWORK_CMD -cdrom $ROOTFS $QEMU_UI_OPTIONS"
603fi 603fi
604 604