diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2025-09-01 11:24:02 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-09-01 14:18:08 -0400 |
commit | e8b51099acf243adf6978ae5d661dfb3c5dcc5ac (patch) | |
tree | d525884395964b24e3755e02956fad36e32473a4 | |
parent | bca7b7f6edf28ca56846dab208f49ad1a479af5e (diff) |
nongnu: corrupt-linux: Support modconfig option.
This option was added in Guix in commit <https://codeberg.org/guix/guix/commit/3269a3098797b92c3b69518c07e473b210d56edb>.
* nongnu/packages/linux.scm (corrupt-linux): Add and use the modconfig keyword
argument.
-rw-r--r-- | nongnu/packages/linux.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nongnu/packages/linux.scm b/nongnu/packages/linux.scm index c0c59c9..904a48b 100644 --- a/nongnu/packages/linux.scm +++ b/nongnu/packages/linux.scm @@ -112,7 +112,8 @@ some freedo package or an output of package-version procedure." (name "linux") (configs "") (defconfig "nonguix_defconfig") - (get-extra-configs nonguix-extra-linux-options)) + (get-extra-configs nonguix-extra-linux-options) + modconfig) ;; TODO: This very directly depends on guix internals. ;; Throw it all out when we manage kernel hashes. @@ -168,7 +169,8 @@ some freedo package or an output of package-version procedure." (uri url) (hash hash)) #:configs configs - #:defconfig defconfig)) + #:defconfig defconfig + #:modconfig modconfig)) (home-page "https://www.kernel.org/") (synopsis "Linux kernel with nonfree binary blobs included") (description |