Signed-off-by: Dmitry Monakhov <dmonakhov@xxxxxxxxxx> --- scripts/package/buildtar | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/package/buildtar b/scripts/package/buildtar index c64e6eb..d0d790f 100755 --- a/scripts/package/buildtar +++ b/scripts/package/buildtar @@ -29,14 +29,17 @@ case "${1}" in ;; targz-pkg) compress="gzip" + type pigz >/dev/null 2>&1 && compress="pigz" file_ext=".gz" ;; tarbz2-pkg) compress="bzip2" + type lbzip2 >/dev/null 2>&1 && compress="lbzip2" file_ext=".bz2" ;; tarxz-pkg) compress="xz" + type pxz >/dev/null 2>&1 && compress="pxz" file_ext=".xz" ;; *) -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html