From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 15/17] gnu: make-linux-libre: Add supported-systems parameter. Date: Fri, 9 Sep 2016 14:34:24 +0200 Message-ID: <20160909123426.18499-15-david@craven.ch> References: <20160909013641.GA9202@jasmine> <20160909123426.18499-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biL1G-0000GA-O1 for guix-devel@gnu.org; Fri, 09 Sep 2016 08:34:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biL1E-0003TD-ON for guix-devel@gnu.org; Fri, 09 Sep 2016 08:34:57 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:53813) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biL1D-0003IS-H0 for guix-devel@gnu.org; Fri, 09 Sep 2016 08:34:56 -0400 In-Reply-To: <20160909123426.18499-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * 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