VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Tor Vic <torvic9@mailbox.org> 2020-12-16 13:58:02 +0100 committer: Masahiro Yamada <masahiroy@kernel.org> 2021-02-12 05:11:19 +0900 commit: db4632c65eb505410f2e6be9c4d50226c973a129 parent: fa1e160b08e8ceabecbd5b42d8268278197c3e67
Commit Summary:
Makefile: use smaller dictionary size for xz module compression
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/Makefile b/Makefile
index ade44ac4cc2f..f0cfcc7e0886 100644
--- a/Makefile
+++ b/Makefile
@@ -1053,7 +1053,7 @@ ifdef CONFIG_MODULE_COMPRESS
     mod_compress_cmd = $(KGZIP) -n -f
   endif # CONFIG_MODULE_COMPRESS_GZIP
   ifdef CONFIG_MODULE_COMPRESS_XZ
-    mod_compress_cmd = $(XZ) -f
+    mod_compress_cmd = $(XZ) --lzma2=dict=2MiB -f
   endif # CONFIG_MODULE_COMPRESS_XZ
 endif # CONFIG_MODULE_COMPRESS
 export mod_compress_cmd