mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
Use the best xz compression for the SDK
It saves 23% space for me, and decompression time is also shorter. Compression time and xz memory usage should be less of a worry for the SDK. (From OE-Core rev: 353d93ead899a479fc6bc3625edc87269a891d39) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
dc9379add2
commit
0734405c9a
@@ -226,7 +226,7 @@ fakeroot tar_sdk() {
|
||||
# Package it up
|
||||
mkdir -p ${SDKDEPLOYDIR}
|
||||
cd ${SDK_OUTPUT}/${SDKPATH}
|
||||
tar ${SDKTAROPTS} -cf - . | xz ${XZ_DEFAULTS} > ${SDKDEPLOYDIR}/${TOOLCHAIN_OUTPUTNAME}.tar.xz
|
||||
tar ${SDKTAROPTS} -cf - . | xz -9 ${XZ_DEFAULTS} > ${SDKDEPLOYDIR}/${TOOLCHAIN_OUTPUTNAME}.tar.xz
|
||||
}
|
||||
|
||||
TOOLCHAIN_SHAR_EXT_TMPL ?= "${COREBASE}/meta/files/toolchain-shar-extract.sh"
|
||||
|
||||
Reference in New Issue
Block a user