From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:39784) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jKd2B-0007yL-Sc for guix-patches@gnu.org; Sat, 04 Apr 2020 03:16:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jKd2A-0001Fb-NV for guix-patches@gnu.org; Sat, 04 Apr 2020 03:16:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60088) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jKd2A-0001FV-Kq for guix-patches@gnu.org; Sat, 04 Apr 2020 03:16:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jKd2A-0005MK-GI for guix-patches@gnu.org; Sat, 04 Apr 2020 03:16:02 -0400 Subject: [bug#40422] [PATCH] gnu: kmod: Update to 27. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:39769) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jKd1t-0007y4-EG for guix-patches@gnu.org; Sat, 04 Apr 2020 03:15:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jKd1r-00018I-MZ for guix-patches@gnu.org; Sat, 04 Apr 2020 03:15:44 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:41599) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jKd1q-00016G-PO for guix-patches@gnu.org; Sat, 04 Apr 2020 03:15:43 -0400 Received: from localhost (luy13-1-78-237-113-178.fbx.proxad.net [78.237.113.178]) (Authenticated sender: brice@waegenei.re) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 2BD9C100003 for ; Sat, 4 Apr 2020 07:15:37 +0000 (UTC) From: Brice Waegeneire Date: Sat, 4 Apr 2020 09:15:34 +0200 Message-Id: <20200404071534.17291-1-brice@waegenei.re> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 40422@debbugs.gnu.org * gnu/packages/linux.scm (kmod): Update to 27. Enable tests. --- This patch need to be merge on core-updates because > 2200 packages will need to be rebuilt. Without this patch (in particular `--sysconfdir=/etc`) it's not possible to pass module arguments to `kernel-module-loader` from . gnu/packages/linux.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 945c15d972..10783c0f5a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -42,6 +42,7 @@ ;;; Copyright © 2020 Pierre Neidhardt ;;; Copyright © 2020 Chris Marusich ;;; Copyright © 2020 Vincent Legoll +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -2731,7 +2732,7 @@ to use Linux' inotify mechanism, which allows file accesses to be monitored.") (define-public kmod (package (name "kmod") - (version "26") + (version "27") (source (origin (method url-fetch) (uri @@ -2739,7 +2740,7 @@ to use Linux' inotify mechanism, which allows file accesses to be monitored.") "kmod-" version ".tar.xz")) (sha256 (base32 - "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp")) + "035wzfzjx4nwidk747p8n085mgkvy531ppn16krrajx2dkqzply1")) (patches (search-patches "kmod-module-directory.patch")))) (build-system gnu-build-system) (native-inputs @@ -2748,8 +2749,8 @@ to use Linux' inotify mechanism, which allows file accesses to be monitored.") `(("xz" ,xz) ("zlib" ,zlib))) (arguments - `(#:tests? #f ; FIXME: Investigate test failures - #:configure-flags '("--with-xz" "--with-zlib") + `(#:configure-flags '("--with-xz" "--with-zlib" "--sysconfdir=/etc" + "--disable-test-modules") #:phases (modify-phases %standard-phases (add-after 'install 'install-modprobe&co -- 2.26.0