From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPD4h-0002fY-Bg for guix-patches@gnu.org; Fri, 10 May 2019 17:29:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPD4g-0004k9-9z for guix-patches@gnu.org; Fri, 10 May 2019 17:29:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53982) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hPD4g-0004jv-6q for guix-patches@gnu.org; Fri, 10 May 2019 17:29:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hPD4f-0003CI-W9 for guix-patches@gnu.org; Fri, 10 May 2019 17:29:02 -0400 Subject: [bug#35677] [PATCH 1/3] gnu: Move Linux-Libre modules to their own section. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:49104) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPD4O-0002eZ-8p for guix-patches@gnu.org; Fri, 10 May 2019 17:28:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPD4M-0004Va-Sm for guix-patches@gnu.org; Fri, 10 May 2019 17:28:44 -0400 Received: from tobias.gr ([2001:470:7405::1]:53610) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hPD4M-0004Un-Ha for guix-patches@gnu.org; Fri, 10 May 2019 17:28:42 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id bb9e03fd for ; Fri, 10 May 2019 21:28:39 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 9874fe45 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 10 May 2019 21:28:39 +0000 (UTC) From: Tobias Geerinckx-Rice Date: Fri, 10 May 2019 23:28:16 +0200 Message-Id: <20190510212818.7996-1-me@tobias.gr> In-Reply-To: <35676@debbugs.gnu.org> References: <35676@debbugs.gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35677@debbugs.gnu.org * gnu/packages/linux.scm (vhba-module): Move to its own section. --- gnu/packages/linux.scm | 49 +++++++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4e08bd0ae3..a3a2615834 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -440,28 +440,6 @@ It has been modified to remove all non-free binary blobs.") #:patches %linux-libre-5.0-patches #:configuration-file kernel-config)) -(define-public vhba-module - (package - (name "vhba-module") - (version "20190410") - (source (origin - (method url-fetch) - (uri (string-append - "http://downloads.sourceforge.net/cdemu/vhba-module/vhba-module-" - version ".tar.bz2")) - (sha256 - (base32 - "1513hq130raxp9z5grj54cwfjfxj05apipxg425j0zicii59a60c")))) - (build-system linux-module-build-system) - (arguments - ;; TODO: No tests? - `(#:tests? #f)) - (home-page "https://cdemu.sourceforge.io/") - (synopsis "Kernel module that emulates SCSI devices") - (description "VHBA module provides a Virtual (SCSI) HBA, which is the link -between the CDemu userspace daemon and linux kernel.") - (license license:gpl2+))) - (define %linux-libre-4.19-version "4.19.41") (define %linux-libre-4.19-hash "0lf1w72y4qkrg57qd78zs16r658qaqzwly0y9195nf7bdwqzb03v") @@ -558,6 +536,33 @@ between the CDemu userspace daemon and linux kernel.") #:extra-version "arm-omap2plus")) +;;; +;;; Linux kernel modules. +;;; + +(define-public vhba-module + (package + (name "vhba-module") + (version "20190410") + (source (origin + (method url-fetch) + (uri (string-append + "http://downloads.sourceforge.net/cdemu/vhba-module/vhba-module-" + version ".tar.bz2")) + (sha256 + (base32 + "1513hq130raxp9z5grj54cwfjfxj05apipxg425j0zicii59a60c")))) + (build-system linux-module-build-system) + (arguments + ;; TODO: No tests? + `(#:tests? #f)) + (home-page "https://cdemu.sourceforge.io/") + (synopsis "Kernel module that emulates SCSI devices") + (description "VHBA module provides a Virtual (SCSI) HBA, which is the link +between the CDemu userspace daemon and linux kernel.") + (license license:gpl2+))) + + ;;; ;;; Pluggable authentication modules (PAM). ;;; -- 2.21.0