aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lt-qcom-linux-integration/builders-deps.sh2
-rwxr-xr-xlt-qcom-linux-integration/builders.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/lt-qcom-linux-integration/builders-deps.sh b/lt-qcom-linux-integration/builders-deps.sh
index c42e092105..2639cd7320 100644
--- a/lt-qcom-linux-integration/builders-deps.sh
+++ b/lt-qcom-linux-integration/builders-deps.sh
@@ -8,7 +8,7 @@ if ! sudo DEBIAN_FRONTEND=noninteractive apt-get -q=2 update; then
sudo DEBIAN_FRONTEND=noninteractive apt-get -q=2 update || true
fi
-pkg_list="tar gzip pigz cpio wget skales e2fsprogs simg2img img2simg python-pip"
+pkg_list="tar gzip pigz cpio xz-utils wget skales e2fsprogs simg2img img2simg python-pip"
if ! sudo DEBIAN_FRONTEND=noninteractive apt-get -q=2 install -y ${pkg_list}; then
echo "INFO: apt install error - try again in a moment"
sleep 15
diff --git a/lt-qcom-linux-integration/builders.sh b/lt-qcom-linux-integration/builders.sh
index ba89a484d4..16e56ee8e1 100755
--- a/lt-qcom-linux-integration/builders.sh
+++ b/lt-qcom-linux-integration/builders.sh
@@ -71,7 +71,7 @@ if [[ ! -z "${KERNEL_MODULES_URL}" ]]; then
modules_file=out/$(basename ${KERNEL_MODULES_URL})
mkdir -p out/modules
- tar -xvzf out/$(basename ${KERNEL_MODULES_URL}) -C out/modules
+ tar -xvf out/$(basename ${KERNEL_MODULES_URL}) -C out/modules
cd out/modules
find . | cpio -oA -H newc -F ../../$rootfs_file
cd ../../
@@ -91,7 +91,7 @@ if [[ ! -z "${KERNEL_MODULES_URL}" ]]; then
mkdir -p out/rootfs_mount
sudo mount -o loop $rootfs_file out/rootfs_mount
- sudo tar -xvzf out/$(basename ${KERNEL_MODULES_URL}) -C out/rootfs_mount
+ sudo tar -xvf out/$(basename ${KERNEL_MODULES_URL}) -C out/rootfs_mount
sudo umount out/rootfs_mount
fi
fi