From 45caa39aaa97fb861eb8c7e42a6d1853b6cff2c4 Mon Sep 17 00:00:00 2001 From: Bruce Leidl Date: Sun, 4 Mar 2018 12:35:15 -0500 Subject: [PATCH] Re-enabled compressing the tarball or else all the other scripts break --- scripts/build-user-rootfs-stage-one | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-user-rootfs-stage-one b/scripts/build-user-rootfs-stage-one index 7e088ba..799bd7a 100755 --- a/scripts/build-user-rootfs-stage-one +++ b/scripts/build-user-rootfs-stage-one @@ -44,7 +44,7 @@ cleanup_chroot() { generate_tarball() { printf "\n\n----- Generating rootfs tarball -----\n\n" tar -C ${DBS_ROOT} -c --xattrs --xattrs-include=* -f ${DBS_BASE}/user-rootfs.tar . - #xz --force --threads=0 ${DBS_BASE}/user-rootfs.tar + xz --force --threads=0 ${DBS_BASE}/user-rootfs.tar ls -al ${DBS_BASE}/user-rootfs.tar printf "\n\n" }