diff options
author | David Craven <david@craven.ch> | 2016-09-08 19:38:24 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-09-13 21:01:27 +0200 |
commit | 3129b9c2b17943a76fa243d30387ca01593fbf6a (patch) | |
tree | f46698bf21a361fe24978470ecace47ace194fbc | |
parent | fd6e0de3c0d997c991fbb59a27b1d71e85b081b8 (diff) |
gnu: make-linux-libre: Add supported-systems parameter.
* gnu/packages/linux.scm (make-linux-libre): Add supported-systems
parameter.
-rw-r--r-- | gnu/packages/linux.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b62252642c..eabcbbe2ae 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -272,7 +272,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." options) "\n")) -(define* (make-linux-libre version hash +(define* (make-linux-libre version hash supported-systems #:key ;; A function that takes an arch and a variant. ;; See kernel-config for an example. @@ -290,8 +290,8 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (uri (linux-libre-urls version)) (sha256 (base32 hash)) (patches (origin-patches %boot-logo-patch)))) + (supported-systems supported-systems) (build-system gnu-build-system) - (supported-systems '("x86_64-linux" "i686-linux")) (native-inputs `(("perl" ,perl) ("bc" ,bc) @@ -377,19 +377,24 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." It has been modified to remove all non-free binary blobs.") (license license:gpl2))) +(define %intel-compatible-systems '("x86_64-linux" "i686-linux")) + (define-public linux-libre (make-linux-libre "4.7.3" "18sy1vh4x66hsk0qbq8g5299my082d530zm8c7xnbakq7350igi6" + %intel-compatible-systems #:configuration-file kernel-config)) (define-public linux-libre-4.4 (make-linux-libre "4.4.20" "1fi0pyyzcf643vdsss0d9ld6jqyxw0k76r0a5vpd4mv3dcl37yyq" + %intel-compatible-systems #:configuration-file kernel-config)) (define-public linux-libre-4.1 (make-linux-libre "4.1.31" "0grffah921k136w1qwcswxv6m810s8q54nr2rk7kyqka3a1b81yw" + %intel-compatible-systems #:configuration-file kernel-config)) |