diff options
author | Scott Garman <scott.a.garman@intel.com> | 2012-07-05 08:57:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-09 16:58:16 +0100 |
commit | c9479ae46d0b891eda8f0db89bc66fdf08c3f7c2 (patch) | |
tree | 5aea12e9d9afbf9d9f03551fc1c66d561c6f4482 /scripts | |
parent | 36482a0064993b047829631d063beadbc03f2cbf (diff) | |
download | openembedded-core-c9479ae46d0b891eda8f0db89bc66fdf08c3f7c2.tar.gz openembedded-core-c9479ae46d0b891eda8f0db89bc66fdf08c3f7c2.tar.bz2 openembedded-core-c9479ae46d0b891eda8f0db89bc66fdf08c3f7c2.zip |
runqemu: fix support for ext4 rootfs images
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 328b6afad1..8d149a2f3c 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]" ;; |