guix-devel
[Top][All Lists]
Advanced

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

[PATCH 15/17] gnu: make-linux-libre: Add supported-systems parameter.


From: David Craven
Subject: [PATCH 15/17] gnu: make-linux-libre: Add supported-systems parameter.
Date: Fri, 9 Sep 2016 14:34:24 +0200

* gnu/packages/linux.scm (make-linux-libre): Add supported-systems
  parameter.
---
 gnu/packages/linux.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 62870a4..384b674 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -272,7 +272,7 @@ for SYSTEM and optionally VARIANT, or #f if there is no 
such configuration."
                  "CONFIG_CIFS=m\n"
                  "CONFIG_9P_FS=m\n"))
 
-(define* (make-linux-libre version source
+(define* (make-linux-libre version source supported-systems
                            #:key
                            (extra-version #f)
                            (configuration-file #f)
@@ -285,8 +285,8 @@ for SYSTEM and optionally VARIANT, or #f if there is no 
such configuration."
               "linux-libre"))
     (version version)
     (source source)
+    (supported-systems supported-systems)
     (build-system gnu-build-system)
-    (supported-systems '("x86_64-linux" "i686-linux"))
     (native-inputs
      `(("perl" ,perl)
        ("bc" ,bc)
@@ -372,6 +372,7 @@ It has been modified to remove all non-free binary blobs.")
                 #:variant (version-major+minor version))))
     (make-linux-libre version
                       (make-linux-libre-source version hash)
+                      '("x86_64-linux" "i686-linux")
                       #:configuration-file conf)))
 
 (define-public linux-libre-4.4
@@ -383,6 +384,7 @@ It has been modified to remove all non-free binary blobs.")
                 #:variant (version-major+minor version))))
     (make-linux-libre version
                       (make-linux-libre-source version hash)
+                      '("x86_64-linux" "i686-linux")
                       #:configuration-file conf)))
 
 (define-public linux-libre-4.1
@@ -394,6 +396,7 @@ It has been modified to remove all non-free binary blobs.")
                 #:variant (version-major+minor version))))
     (make-linux-libre version
                       (make-linux-libre-source version hash)
+                      '("x86_64-linux" "i686-linux")
                       #:configuration-file conf)))
 
 
-- 
2.9.0



reply via email to

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