From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCMgb-0001Ar-MY for guix-patches@gnu.org; Fri, 05 Apr 2019 07:07:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCMga-00008W-AK for guix-patches@gnu.org; Fri, 05 Apr 2019 07:07:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:59787) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hCMgZ-0008WL-Cv for guix-patches@gnu.org; Fri, 05 Apr 2019 07:07:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hCMgZ-0004YB-6M for guix-patches@gnu.org; Fri, 05 Apr 2019 07:07:03 -0400 Subject: [bug#35110] [PATCH v2 2/2] gnu: Add vhba-module. Resent-Message-ID: From: Danny Milosavljevic Date: Fri, 5 Apr 2019 13:05:50 +0200 Message-Id: <20190405110550.24168-3-dannym@scratchpost.org> In-Reply-To: <20190405110550.24168-1-dannym@scratchpost.org> References: <20190402192729.5262-1-dannym@scratchpost.org> <20190405110550.24168-1-dannym@scratchpost.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: 35110@debbugs.gnu.org Cc: Pierre Neidhardt From: Pierre Neidhardt * gnu/packages/linux.scm (vhba-module): New variable. Signed-off-by: Danny Milosavljevic --- gnu/packages/linux.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index e4f6e241ec..52ae0387d1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -118,6 +118,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system python) #:use-module (guix build-system trivial) + #:use-module (guix build-system linux-module) #:use-module (guix download) #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) @@ -438,6 +439,28 @@ 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 "20170610") + (source (origin + (method url-fetch) + (uri (string-append + "http://downloads.sourceforge.net/cdemu/vhba-module-" + version ".tar.bz2")) + (sha256 + (base32 + "1v6r0bgx0a65vlh36b1l2965xybngbpga6rp54k4z74xk0zwjw3r")))) + (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.33") (define %linux-libre-4.19-hash "147ksl3ksxdv2ifr18cbzq4647n9d7yr7kbxg02sljia7z3b70cm")