Message ID | 711805f70e82288783817bc515e9310ad128c11e.1368201796.git.stefanx.stanacar@intel.com |
---|---|
State | Accepted |
Commit | 702deed71de41ef2e93bc5435e136bf219537d3a |
Headers | show |
diff --git a/scripts/runqemu b/scripts/runqemu index 8ed1226..9bd35de 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -384,7 +384,8 @@ if [ -e "$ROOTFS" -a -z "$FSTYPE" ]; then # Extract the filename extension EXT=`echo $ROOTFS | awk -F . '{ print \$NF }'` if [ "x$EXT" = "xext2" -o "x$EXT" = "xext3" -o \ - "x$EXT" = "xjffs2" -o "x$EXT" = "xbtrfs" ]; then + "x$EXT" = "xjffs2" -o "x$EXT" = "xbtrfs" -o \ + "x$EXT" = "xext4" ]; then FSTYPE=$EXT else echo "Note: Unable to determine filesystem extension for $ROOTFS"
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> --- scripts/runqemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)