summaryrefslogtreecommitdiff
path: root/script/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-10 15:12:38 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-10 15:12:38 +0100
commitd28ad6aa782108007aad116d02b7f9c7c42fa618 (patch)
tree8aff5060d09f62a89120768f090c55dad2807c42 /script/build
parent308c21dd438e5dc27b232a0c31f0e68244ab364f (diff)
build/release/roms: use -T0 on serprog tarballs
xz supports using multiple threads so use multiple threads Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build')
-rwxr-xr-xscript/build/release/roms2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/build/release/roms b/script/build/release/roms
index c15087f5..369d088d 100755
--- a/script/build/release/roms
+++ b/script/build/release/roms
@@ -85,7 +85,7 @@ make_archive()
if [ ! -f "config/coreboot/${target}/target.cfg" ]; then
# No config, just make a tarball
tarball=release/${version}/roms/${target}_${version}.tar.xz
- tar -c "${builddir}" | xz -6 > ${tarball} || \
+ tar -c "${builddir}" | xz -T0 -6 > ${tarball} || \
(rm ${tarball}
err "make_archive: cannot make \"${tarball}\"")
return 0