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>
btrfsvols
Leah Rowe 2023-09-10 15:12:38 +01:00
parent 308c21dd43
commit d28ad6aa78
1 changed files with 1 additions and 1 deletions

View File

@ -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