From patchwork Mon Jul 9 15:47:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 19/41] runqemu: fix support for ext4 rootfs images Date: Mon, 09 Jul 2012 15:47:33 -0000 From: Saul Wold X-Patchwork-Id: 31463 Message-Id: <39f2f7fbc42266bef1cd9246ff7b00be94c08a85.1341802889.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Scott Garman Signed-off-by: Scott Garman --- scripts/runqemu | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 328b6af..8d149a2 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]" ;;