From e469bb722e89d4246aa908660b22f79b8a7f1041 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Wed, 2 Mar 2016 17:50:05 -0800 Subject: runqemu: simplify checking for iso and ramfs (From OE-Core rev: 69a1fca4374797dea56035ce56a17441a2ca9280) Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- scripts/runqemu | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'scripts/runqemu') 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 [ -z "$MACHINE" -o "$MACHINE" = "$arg" ] && MACHINE=$arg || \ error "conflicting MACHINE types [$MACHINE] and [$arg]" ;; - "ext"[234] | "jffs2" | "nfs" | "btrfs") + "ext"[234] | "jffs2" | "nfs" | "btrfs" | "iso") check_fstype_conflicts $arg ;; "hddimg" | "hdddirect" | "wic" | "vmdk" | "qcow2" | "vdi") @@ -134,12 +134,7 @@ while true; do ;; "ramfs") FSTYPE=cpio.gz - RAMFS=true ;; - "iso") - FSTYPE=iso - ISOFS=true - ;; "nographic") SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -nographic" SCRIPT_KERNEL_OPT="$SCRIPT_KERNEL_OPT console=ttyS0" -- cgit v1.2.3-54-g00ecf