[oe-commits] [openembedded-core] 17/57: runqemu-extract-sdk: support tar.xz format

git at git.openembedded.org git at git.openembedded.org
Sat Jun 16 21:35:49 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 26fc5991d1b8ccda88495ebdb5f4f2c170cef8d8
Author: Dennis Menschel <menschel-d at posteo.de>
AuthorDate: Wed Jun 13 20:28:15 2018 +0200

    runqemu-extract-sdk: support tar.xz format
    
    As the format "tar.xz" is included in the IMAGE_TYPES bitbake variable
    as defined in meta/classes/image_types.bbclass, it should also be
    possible to extract a rootfs that has been built using that format.
    
    Signed-off-by: Dennis Menschel <menschel-d at posteo.de>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/runqemu-extract-sdk | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk
index f4286ef..13e02fa 100755
--- a/scripts/runqemu-extract-sdk
+++ b/scripts/runqemu-extract-sdk
@@ -53,6 +53,9 @@ if [[ ${SDK_ROOTFS_DIR:0:1} != "/" ]]; then
 fi
 
 TAR_OPTS=""
+if [[ "$ROOTFS_TARBALL" =~ tar\.xz$ ]]; then
+	TAR_OPTS="--numeric-owner -xJf"
+fi
 if [[ "$ROOTFS_TARBALL" =~ tar\.bz2$ ]]; then
 	TAR_OPTS="--numeric-owner -xjf"
 fi
@@ -64,7 +67,7 @@ if [[ "$ROOTFS_TARBALL" =~ \.tar$ ]]; then
 fi
 if [ -z "$TAR_OPTS" ]; then
 	echo "Error: Unable to determine sdk tarball format"
-	echo "Accepted types: .tar / .tar.gz / .tar.bz2"
+	echo "Accepted types: .tar / .tar.gz / .tar.bz2 / .tar.xz"
 	exit 1
 fi
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list