mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
populate_sdk: Use pixz instead of xz
xz is slow at compressing the SDKs, we can speed it up by using the parallel compressor, pixz. (From OE-Core rev: f4ec14b986fee791da33b8900c28c956f17b28b0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -40,7 +40,7 @@ TOOLCHAIN_TARGET_TASK_ATTEMPTONLY ?= ""
|
|||||||
TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${SDK_VERSION}"
|
TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-toolchain-${SDK_VERSION}"
|
||||||
|
|
||||||
SDK_RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}"
|
SDK_RDEPENDS = "${TOOLCHAIN_TARGET_TASK} ${TOOLCHAIN_HOST_TASK}"
|
||||||
SDK_DEPENDS = "virtual/fakeroot-native xz-native"
|
SDK_DEPENDS = "virtual/fakeroot-native pixz-native"
|
||||||
|
|
||||||
# We want the MULTIARCH_TARGET_SYS to point to the TUNE_PKGARCH, not PACKAGE_ARCH as it
|
# We want the MULTIARCH_TARGET_SYS to point to the TUNE_PKGARCH, not PACKAGE_ARCH as it
|
||||||
# could be set to the MACHINE_ARCH
|
# could be set to the MACHINE_ARCH
|
||||||
@@ -181,7 +181,7 @@ fakeroot tar_sdk() {
|
|||||||
# Package it up
|
# Package it up
|
||||||
mkdir -p ${SDK_DEPLOY}
|
mkdir -p ${SDK_DEPLOY}
|
||||||
cd ${SDK_OUTPUT}/${SDKPATH}
|
cd ${SDK_OUTPUT}/${SDKPATH}
|
||||||
tar ${SDKTAROPTS} -cf - . | xz > ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.xz
|
tar ${SDKTAROPTS} -cf - . | pixz > ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.xz
|
||||||
}
|
}
|
||||||
|
|
||||||
fakeroot create_shar() {
|
fakeroot create_shar() {
|
||||||
|
|||||||
Reference in New Issue
Block a user