From d28ad6aa782108007aad116d02b7f9c7c42fa618 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 10 Sep 2023 15:12:38 +0100 Subject: build/release/roms: use -T0 on serprog tarballs xz supports using multiple threads so use multiple threads Signed-off-by: Leah Rowe --- script/build/release/roms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script/build') 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 -- cgit v1.2.1