From bc02e97db7ce7edc69528d486149c52e1261fa34 Mon Sep 17 00:00:00 2001 From: Stefan Stanacar Date: Fri, 10 May 2013 19:06:24 +0300 Subject: scripts/runqemu: add ext4 to the list of extracted extensions (From OE-Core rev: 702deed71de41ef2e93bc5435e136bf219537d3a) Signed-off-by: Stefan Stanacar Signed-off-by: Richard Purdie --- scripts/runqemu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') 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" -- cgit v1.2.3-54-g00ecf