summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu7
-rwxr-xr-xscripts/runqemu-internal4
2 files changed, 3 insertions, 8 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index d95711b191..b4cc9de139 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -125,7 +125,7 @@ while true; do
125 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \ 125 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \
126 error "conflicting MACHINE types [$MACHINE] and [$arg]" 126 error "conflicting MACHINE types [$MACHINE] and [$arg]"
127 ;; 127 ;;
128 "ext"[234] | "jffs2" | "nfs" | "btrfs") 128 "ext"[234] | "jffs2" | "nfs" | "btrfs" | "iso")
129 check_fstype_conflicts $arg 129 check_fstype_conflicts $arg
130 ;; 130 ;;
131 "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi") 131 "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi")
@@ -134,12 +134,7 @@ while true; do
134 ;; 134 ;;
135 "ramfs") 135 "ramfs")
136 FSTYPE=cpio.gz 136 FSTYPE=cpio.gz
137 RAMFS=true
138 ;; 137 ;;
139 "iso")
140 FSTYPE=iso
141 ISOFS=true
142 ;;
143 "nographic") 138 "nographic")
144 SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -nographic" 139 SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -nographic"
145 SCRIPT_KERNEL_OPT="$SCRIPT_KERNEL_OPT console=ttyS0" 140 SCRIPT_KERNEL_OPT="$SCRIPT_KERNEL_OPT console=ttyS0"
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