nongnu: corrupt-linux: Pass defconfig value.

* nongnu/packages/linux.scm (corrupt-linux): Pass defconfig value.

Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
Adam Kandur 2023-05-29 14:31:46 +03:00 committed by Jonathan Brielmaier
parent d06e36978d
commit 47568e4fb2
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -21,6 +21,7 @@
;;; Copyright © 2023 Krzysztof Baranowski <pharcosyle@gmail.com>
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
;;; Copyright © 2023 Jelle Licht <jlicht@fsfe.org>
;;; Copyright © 2023 Adam Kandur <rndd@tuta.io>
(define-module (nongnu packages linux)
#:use-module (gnu packages)
@ -48,7 +49,11 @@
"/linux/kernel/v" (version-major version) ".x"
"/linux-" version ".tar.xz"))
(define* (corrupt-linux freedo #:key (name "linux") (configs '()))
(define* (corrupt-linux freedo
#:key
(name "linux")
(configs '())
(defconfig #f))
;; TODO: This very directly depends on guix internals.
;; Throw it all out when we manage kernel hashes.
@ -80,7 +85,8 @@
(method url-fetch)
(uri url)
(hash hash))
#:configs configs))
#:configs configs
#:defconfig defconfig))
(version version)
(home-page "https://www.kernel.org/")
(synopsis "Linux kernel with nonfree binary blobs included")