diff options
| author | Mark H Weaver | 2016-10-22 00:22:31 -0400 |
|---|---|---|
| committer | Mark H Weaver | 2016-10-22 00:22:31 -0400 |
| commit | 64de7d1ceb863ad5cebd6ea266de704eac7dea7d (patch) | |
| tree | 36a555753cc4463670a493608882791e52808ede | |
| parent | 57147c5d3490b660618bd2ca598bb940f1012907 (diff) | |
gnu: make-linux-libre: Add #:patches keyword argument.
* gnu/packages/linux.scm (make-linux-libre): Add 'patches' keyword
argument.
| -rw-r--r-- | gnu/packages/linux.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 07c25e244..4c64bbe1d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -220,7 +220,8 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (extra-version #f) (configuration-file #f) (defconfig "defconfig") - (extra-options %default-extra-linux-options)) + (extra-options %default-extra-linux-options) + (patches (list %boot-logo-patch))) (package (name (if extra-version (string-append "linux-libre-" extra-version) @@ -230,7 +231,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (method url-fetch) (uri (linux-libre-urls version)) (sha256 (base32 hash)) - (patches (list %boot-logo-patch)))) + (patches patches))) (supported-systems supported-systems) (build-system gnu-build-system) (native-inputs |