diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-10 15:12:38 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-10 15:12:38 +0100 |
commit | d28ad6aa782108007aad116d02b7f9c7c42fa618 (patch) | |
tree | 8aff5060d09f62a89120768f090c55dad2807c42 | |
parent | 308c21dd438e5dc27b232a0c31f0e68244ab364f (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>
-rwxr-xr-x | script/build/release/roms | 2 |
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 |