mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: make-linux-libre: Add #:patches keyword argument.
* gnu/packages/linux.scm (make-linux-libre): Add 'patches' keyword argument.
This commit is contained in:
parent
57147c5d34
commit
64de7d1ceb
1 changed files with 3 additions and 2 deletions
|
@ -220,7 +220,8 @@ (define* (make-linux-libre version hash supported-systems
|
||||||
(extra-version #f)
|
(extra-version #f)
|
||||||
(configuration-file #f)
|
(configuration-file #f)
|
||||||
(defconfig "defconfig")
|
(defconfig "defconfig")
|
||||||
(extra-options %default-extra-linux-options))
|
(extra-options %default-extra-linux-options)
|
||||||
|
(patches (list %boot-logo-patch)))
|
||||||
(package
|
(package
|
||||||
(name (if extra-version
|
(name (if extra-version
|
||||||
(string-append "linux-libre-" extra-version)
|
(string-append "linux-libre-" extra-version)
|
||||||
|
@ -230,7 +231,7 @@ (define* (make-linux-libre version hash supported-systems
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (linux-libre-urls version))
|
(uri (linux-libre-urls version))
|
||||||
(sha256 (base32 hash))
|
(sha256 (base32 hash))
|
||||||
(patches (list %boot-logo-patch))))
|
(patches patches)))
|
||||||
(supported-systems supported-systems)
|
(supported-systems supported-systems)
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue