guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: linux-libre: Enable module compression for all ve


From: guix-commits
Subject: branch master updated: linux-libre: Enable module compression for all versions.
Date: Thu, 27 Aug 2020 04:44:02 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 41a190b  linux-libre: Enable module compression for all versions.
41a190b is described below

commit 41a190b8c6d2759182b1bb54b57acb46acc38670
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Thu Aug 27 10:41:51 2020 +0200

    linux-libre: Enable module compression for all versions.
    
    This is a follow-up of 5fe12be0dd03d1a316343549f8c131d931f21a9a. It enables
    module compression for all supported Linux versions.
    
    *  gnu/packages/aux-files/linux-libre/4.14-arm.conf: Enable GZIP module 
compression.
    *  gnu/packages/aux-files/linux-libre/4.14-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.14-x86_64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.19-arm.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.19-arm64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.19-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.19-x86_64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.4-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.4-x86_64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.9-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/4.9-x86_64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.4-arm.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.4-arm64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.4-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.4-x86_64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.7-arm.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.7-arm64.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.7-i686.conf: Ditto.
    *  gnu/packages/aux-files/linux-libre/5.7-x86_64.conf: Ditto.
---
 gnu/packages/aux-files/linux-libre/4.14-arm.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/4.14-i686.conf   | 4 +++-
 gnu/packages/aux-files/linux-libre/4.14-x86_64.conf | 4 +++-
 gnu/packages/aux-files/linux-libre/4.19-arm.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/4.19-arm64.conf  | 4 +++-
 gnu/packages/aux-files/linux-libre/4.19-i686.conf   | 4 +++-
 gnu/packages/aux-files/linux-libre/4.19-x86_64.conf | 4 +++-
 gnu/packages/aux-files/linux-libre/4.4-i686.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/4.4-x86_64.conf  | 4 +++-
 gnu/packages/aux-files/linux-libre/4.9-i686.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/4.9-x86_64.conf  | 4 +++-
 gnu/packages/aux-files/linux-libre/5.4-arm.conf     | 4 +++-
 gnu/packages/aux-files/linux-libre/5.4-arm64.conf   | 4 +++-
 gnu/packages/aux-files/linux-libre/5.4-i686.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/5.4-x86_64.conf  | 4 +++-
 gnu/packages/aux-files/linux-libre/5.7-arm.conf     | 4 +++-
 gnu/packages/aux-files/linux-libre/5.7-arm64.conf   | 4 +++-
 gnu/packages/aux-files/linux-libre/5.7-i686.conf    | 4 +++-
 gnu/packages/aux-files/linux-libre/5.7-x86_64.conf  | 4 +++-
 19 files changed, 57 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/aux-files/linux-libre/4.14-arm.conf 
b/gnu/packages/aux-files/linux-libre/4.14-arm.conf
index 05fa8cc..c6d19f5 100644
--- a/gnu/packages/aux-files/linux-libre/4.14-arm.conf
+++ b/gnu/packages/aux-files/linux-libre/4.14-arm.conf
@@ -305,7 +305,9 @@ CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
diff --git a/gnu/packages/aux-files/linux-libre/4.14-i686.conf 
b/gnu/packages/aux-files/linux-libre/4.14-i686.conf
index db09a41..28bf820 100644
--- a/gnu/packages/aux-files/linux-libre/4.14-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/4.14-i686.conf
@@ -350,7 +350,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_LBDAF=y
diff --git a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf
index 508c943..f5b9730 100644
--- a/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/4.14-x86_64.conf
@@ -370,7 +370,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_BLK_SCSI_REQUEST=y
diff --git a/gnu/packages/aux-files/linux-libre/4.19-arm.conf 
b/gnu/packages/aux-files/linux-libre/4.19-arm.conf
index 239e6e5..32d288b 100644
--- a/gnu/packages/aux-files/linux-libre/4.19-arm.conf
+++ b/gnu/packages/aux-files/linux-libre/4.19-arm.conf
@@ -876,7 +876,9 @@ CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
diff --git a/gnu/packages/aux-files/linux-libre/4.19-arm64.conf 
b/gnu/packages/aux-files/linux-libre/4.19-arm64.conf
index 45f9ab8..76bd266 100644
--- a/gnu/packages/aux-files/linux-libre/4.19-arm64.conf
+++ b/gnu/packages/aux-files/linux-libre/4.19-arm64.conf
@@ -750,7 +750,9 @@ CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
diff --git a/gnu/packages/aux-files/linux-libre/4.19-i686.conf 
b/gnu/packages/aux-files/linux-libre/4.19-i686.conf
index 03f51f4..0fb07d5 100644
--- a/gnu/packages/aux-files/linux-libre/4.19-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/4.19-i686.conf
@@ -881,7 +881,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_LBDAF=y
diff --git a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf
index 685ca2a..49a349f 100644
--- a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf
@@ -872,7 +872,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_BLK_SCSI_REQUEST=y
diff --git a/gnu/packages/aux-files/linux-libre/4.4-i686.conf 
b/gnu/packages/aux-files/linux-libre/4.4-i686.conf
index 33a5f67..32442eb 100644
--- a/gnu/packages/aux-files/linux-libre/4.4-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/4.4-i686.conf
@@ -302,7 +302,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_LBDAF=y
diff --git a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf
index aabd0df..adfb848 100644
--- a/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/4.4-x86_64.conf
@@ -315,7 +315,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_BLK_DEV_BSG=y
diff --git a/gnu/packages/aux-files/linux-libre/4.9-i686.conf 
b/gnu/packages/aux-files/linux-libre/4.9-i686.conf
index d1a64e2..d4a4b7f 100644
--- a/gnu/packages/aux-files/linux-libre/4.9-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/4.9-i686.conf
@@ -322,7 +322,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_LBDAF=y
diff --git a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf
index 3d69605..94aa217 100644
--- a/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/4.9-x86_64.conf
@@ -339,7 +339,9 @@ CONFIG_MODULE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 CONFIG_MODULES_TREE_LOOKUP=y
 CONFIG_BLOCK=y
 CONFIG_BLK_DEV_BSG=y
diff --git a/gnu/packages/aux-files/linux-libre/5.4-arm.conf 
b/gnu/packages/aux-files/linux-libre/5.4-arm.conf
index a542286..7c9ab94 100644
--- a/gnu/packages/aux-files/linux-libre/5.4-arm.conf
+++ b/gnu/packages/aux-files/linux-libre/5.4-arm.conf
@@ -880,7 +880,9 @@ CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 # CONFIG_UNUSED_SYMBOLS is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
diff --git a/gnu/packages/aux-files/linux-libre/5.4-arm64.conf 
b/gnu/packages/aux-files/linux-libre/5.4-arm64.conf
index fabd25c..6520d1d 100644
--- a/gnu/packages/aux-files/linux-libre/5.4-arm64.conf
+++ b/gnu/packages/aux-files/linux-libre/5.4-arm64.conf
@@ -781,7 +781,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 # CONFIG_UNUSED_SYMBOLS is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
diff --git a/gnu/packages/aux-files/linux-libre/5.4-i686.conf 
b/gnu/packages/aux-files/linux-libre/5.4-i686.conf
index 50a41f6..3727f9d 100644
--- a/gnu/packages/aux-files/linux-libre/5.4-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/5.4-i686.conf
@@ -850,7 +850,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 CONFIG_UNUSED_SYMBOLS=y
 CONFIG_MODULES_TREE_LOOKUP=y
diff --git a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf
index 30fdc4e..be7a603 100644
--- a/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/5.4-x86_64.conf
@@ -849,7 +849,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 CONFIG_UNUSED_SYMBOLS=y
 CONFIG_MODULES_TREE_LOOKUP=y
diff --git a/gnu/packages/aux-files/linux-libre/5.7-arm.conf 
b/gnu/packages/aux-files/linux-libre/5.7-arm.conf
index 6ed8459..af70e5f 100644
--- a/gnu/packages/aux-files/linux-libre/5.7-arm.conf
+++ b/gnu/packages/aux-files/linux-libre/5.7-arm.conf
@@ -875,7 +875,9 @@ CONFIG_MODULE_FORCE_UNLOAD=y
 CONFIG_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 # CONFIG_UNUSED_SYMBOLS is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
diff --git a/gnu/packages/aux-files/linux-libre/5.7-arm64.conf 
b/gnu/packages/aux-files/linux-libre/5.7-arm64.conf
index 7c2cfc1..ece4197 100644
--- a/gnu/packages/aux-files/linux-libre/5.7-arm64.conf
+++ b/gnu/packages/aux-files/linux-libre/5.7-arm64.conf
@@ -797,7 +797,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 # CONFIG_MODULE_SRCVERSION_ALL is not set
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 # CONFIG_UNUSED_SYMBOLS is not set
 # CONFIG_TRIM_UNUSED_KSYMS is not set
diff --git a/gnu/packages/aux-files/linux-libre/5.7-i686.conf 
b/gnu/packages/aux-files/linux-libre/5.7-i686.conf
index 45a5039..772b10b 100644
--- a/gnu/packages/aux-files/linux-libre/5.7-i686.conf
+++ b/gnu/packages/aux-files/linux-libre/5.7-i686.conf
@@ -843,7 +843,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 CONFIG_UNUSED_SYMBOLS=y
 CONFIG_MODULES_TREE_LOOKUP=y
diff --git a/gnu/packages/aux-files/linux-libre/5.7-x86_64.conf 
b/gnu/packages/aux-files/linux-libre/5.7-x86_64.conf
index 316a062..37f4c12 100644
--- a/gnu/packages/aux-files/linux-libre/5.7-x86_64.conf
+++ b/gnu/packages/aux-files/linux-libre/5.7-x86_64.conf
@@ -844,7 +844,9 @@ CONFIG_MODVERSIONS=y
 CONFIG_ASM_MODVERSIONS=y
 CONFIG_MODULE_SRCVERSION_ALL=y
 # CONFIG_MODULE_SIG is not set
-# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_COMPRESS=y
+CONFIG_MODULE_COMPRESS_GZIP=y
+# CONFIG_MODULE_COMPRESS_XZ is not set
 # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
 CONFIG_UNUSED_SYMBOLS=y
 CONFIG_MODULES_TREE_LOOKUP=y



reply via email to

[Prev in Thread] Current Thread [Next in Thread]