guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: make-linux-libre: Add #:patches keyword argument.


From: Mark H. Weaver
Subject: 01/02: gnu: make-linux-libre: Add #:patches keyword argument.
Date: Sat, 22 Oct 2016 04:53:44 +0000 (UTC)

mhw pushed a commit to branch master
in repository guix.

commit 64de7d1ceb863ad5cebd6ea266de704eac7dea7d
Author: Mark H Weaver <address@hidden>
Date:   Sat Oct 22 00:22:31 2016 -0400

    gnu: make-linux-libre: Add #:patches keyword argument.
    
    * gnu/packages/linux.scm (make-linux-libre): Add 'patches' keyword
    argument.
---
 gnu/packages/linux.scm |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 07c25e2..4c64bbe 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



reply via email to

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