2011-01-13 01:01:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# This is a wrapper for xz to compress the kernel image using appropriate
|
|
|
|
# compression options depending on the architecture.
|
|
|
|
#
|
|
|
|
# Author: Lasse Collin <lasse.collin@tukaani.org>
|
|
|
|
#
|
|
|
|
# This file has been put into the public domain.
|
|
|
|
# You can do whatever you want with this file.
|
|
|
|
#
|
|
|
|
|
|
|
|
BCJ=
|
|
|
|
LZMA2OPTS=
|
|
|
|
|
2012-04-18 16:55:44 +00:00
|
|
|
case $SRCARCH in
|
|
|
|
x86) BCJ=--x86 ;;
|
2011-01-13 01:01:22 +00:00
|
|
|
powerpc) BCJ=--powerpc ;;
|
|
|
|
ia64) BCJ=--ia64; LZMA2OPTS=pb=4 ;;
|
|
|
|
arm) BCJ=--arm ;;
|
|
|
|
sparc) BCJ=--sparc ;;
|
|
|
|
esac
|
|
|
|
|
kbuild: add variables for compression tools
Allow user to use alternative implementations of compression tools,
such as pigz, pbzip2, pxz. For example, multi-threaded tools to
speed up the build:
$ make GZIP=pigz BZIP2=pbzip2
Variables _GZIP, _BZIP2, _LZOP are used internally because original env
vars are reserved by the tools. The use of GZIP in gzip tool is obsolete
since 2015. However, alternative implementations (e.g., pigz) still rely
on it. BZIP2, BZIP, LZOP vars are not obsolescent.
The credit goes to @grsecurity.
As a sidenote, for multi-threaded lzma, xz compression one can use:
$ export XZ_OPT="--threads=0"
Signed-off-by: Denis Efremov <efremov@linux.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-05 07:39:55 +00:00
|
|
|
exec $XZ --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB
|