From: Stefan Stanacar Date: Fri, 10 May 2013 16:06:24 +0000 (+0300) Subject: scripts/runqemu: add ext4 to the list of extracted extensions X-Git-Tag: 2015-4~6573 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=702deed71de41ef2e93bc5435e136bf219537d3a;p=openembedded-core.git scripts/runqemu: add ext4 to the list of extracted extensions Signed-off-by: Stefan Stanacar Signed-off-by: Richard Purdie --- diff --git a/scripts/runqemu b/scripts/runqemu index 8ed1226c06..9bd35de6ab 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"