diff options
| author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-05-10 19:06:24 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-12 08:33:16 +0100 |
| commit | bc02e97db7ce7edc69528d486149c52e1261fa34 (patch) | |
| tree | e97209a3165427614e0ff8863a50a7a9093602ee | |
| parent | 5ea4d8167df81ef77bd79b5ebb29b9769384d931 (diff) | |
| download | poky-bc02e97db7ce7edc69528d486149c52e1261fa34.tar.gz | |
scripts/runqemu: add ext4 to the list of extracted extensions
(From OE-Core rev: 702deed71de41ef2e93bc5435e136bf219537d3a)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | scripts/runqemu | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
| 384 | # Extract the filename extension | 384 | # Extract the filename extension |
| 385 | EXT=`echo $ROOTFS | awk -F . '{ print \$NF }'` | 385 | EXT=`echo $ROOTFS | awk -F . '{ print \$NF }'` |
| 386 | if [ "x$EXT" = "xext2" -o "x$EXT" = "xext3" -o \ | 386 | if [ "x$EXT" = "xext2" -o "x$EXT" = "xext3" -o \ |
| 387 | "x$EXT" = "xjffs2" -o "x$EXT" = "xbtrfs" ]; then | 387 | "x$EXT" = "xjffs2" -o "x$EXT" = "xbtrfs" -o \ |
| 388 | "x$EXT" = "xext4" ]; then | ||
| 388 | FSTYPE=$EXT | 389 | FSTYPE=$EXT |
| 389 | else | 390 | else |
| 390 | echo "Note: Unable to determine filesystem extension for $ROOTFS" | 391 | echo "Note: Unable to determine filesystem extension for $ROOTFS" |
