mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 14:06:58 +02:00
eclass/linux-mod: Sync with Gentoo
It's from Gentoo commit eaefe0f676c685a0e52682eb125db34a1f54da9b.
This commit is contained in:
parent
ab1c1d7a06
commit
ad023d5a1f
@ -689,7 +689,9 @@ linux-mod_src_install() {
|
|||||||
# and similarly compress the module being built if != NONE.
|
# and similarly compress the module being built if != NONE.
|
||||||
|
|
||||||
if linux_chkconfig_present MODULE_COMPRESS_XZ; then
|
if linux_chkconfig_present MODULE_COMPRESS_XZ; then
|
||||||
xz -T$(makeopts_jobs) --memlimit-compress=50% -q ${modulename}.${KV_OBJ} || die "Compressing ${modulename}.${KV_OBJ} with xz failed"
|
# match kernel compression options for compatibility
|
||||||
|
# https://bugs.gentoo.org/920837
|
||||||
|
xz -T$(makeopts_jobs) --memlimit-compress=50% -q --check=crc32 --lzma2=dict=1MiB ${modulename}.${KV_OBJ} || die "Compressing ${modulename}.${KV_OBJ} with xz failed"
|
||||||
doins ${modulename}.${KV_OBJ}.xz
|
doins ${modulename}.${KV_OBJ}.xz
|
||||||
KV_OBJ_COMPRESS_EXT=".xz"
|
KV_OBJ_COMPRESS_EXT=".xz"
|
||||||
elif linux_chkconfig_present MODULE_COMPRESS_GZIP; then
|
elif linux_chkconfig_present MODULE_COMPRESS_GZIP; then
|
||||||
|
Loading…
Reference in New Issue
Block a user