From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36915) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4mN1-00036E-O2 for guix-patches@gnu.org; Thu, 20 Feb 2020 09:00:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4mN0-0005Tk-IG for guix-patches@gnu.org; Thu, 20 Feb 2020 09:00:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:38137) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j4mN0-0005TH-E4 for guix-patches@gnu.org; Thu, 20 Feb 2020 09:00:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j4mN0-0000r7-Az for guix-patches@gnu.org; Thu, 20 Feb 2020 09:00:02 -0500 Subject: [bug#39690] [PATCH] gnu: Add pm_pcie_driver. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:36820) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4mMM-0002ot-9U for guix-patches@gnu.org; Thu, 20 Feb 2020 08:59:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4mMK-0004i8-6B for guix-patches@gnu.org; Thu, 20 Feb 2020 08:59:22 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:34370) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j4mMK-0004cf-01 for guix-patches@gnu.org; Thu, 20 Feb 2020 08:59:20 -0500 From: Danny Milosavljevic Date: Thu, 20 Feb 2020 14:59:10 +0100 Message-Id: <20200220135910.24500-1-dannym@scratchpost.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 39690@debbugs.gnu.org Cc: Danny Milosavljevic * gnu/packages/linux.scm (pm_pcie_driver): New variable. --- gnu/packages/linux.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index aff8fd08fc..25dc756e56 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1046,6 +1046,26 @@ module allows the control of the backlight level o= r luminance property when supported under @file{/sys/class/backlight/}.") (license license:gpl2+))) =20 +(define-public pm_pcie_driver + (package + (name "pm_pcie_driver") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri "https://www.passmark.com/downloads/pm_pcie_driver.tar.gz") + (sha256 + (base32 + "0xxyr7xi3j8v64yixzw01w7hi0c8pvd21wyr3k8fjiilvls2x9iw")))) + (build-system linux-module-build-system) + (arguments + `(#:tests? #f)) ; no tests + (home-page "https://www.passmark.com/products/pcie-test-card/index.p= hp") + (synopsis "Passmark PCIe test card driver") + (description "This package provides a Linux kernel driver for the Pa= ssmark +PCIe test card.") + (license license:gpl2+))) + =0C ;;; ;;; Pluggable authentication modules (PAM).