From: Scott Garman Date: Thu, 5 Jul 2012 15:57:52 +0000 (-0700) Subject: runqemu: fix support for ext4 rootfs images X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~40913 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9479ae46d0b891eda8f0db89bc66fdf08c3f7c2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu: fix support for ext4 rootfs images Signed-off-by: Scott Garman --- diff --git a/scripts/runqemu b/scripts/runqemu index 328b6afad1f..8d149a2f3ca 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -98,7 +98,7 @@ while true; do [ -z "$MACHINE" ] && MACHINE=$arg || \ error "conflicting MACHINE types [$MACHINE] and [$arg]" ;; - "ext2" | "ext3" | "jffs2" | "nfs" | "btrfs") + "ext2" | "ext3" | "ext4" | "jffs2" | "nfs" | "btrfs") [ -z "$FSTYPE" -o "$FSTYPE" = "$arg" ] && FSTYPE=$arg || \ error "conflicting FSTYPE types [$FSTYPE] and [$arg]" ;;