From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45922) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNa12-0002GZ-6c for guix-patches@gnu.org; Sun, 12 Apr 2020 06:39:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNa0z-00010S-Tv for guix-patches@gnu.org; Sun, 12 Apr 2020 06:39:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:45876) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNa0z-00010N-Qt for guix-patches@gnu.org; Sun, 12 Apr 2020 06:39:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNa0z-0002Jr-PQ for guix-patches@gnu.org; Sun, 12 Apr 2020 06:39:01 -0400 Subject: [bug#40568] [PATCH] gnu: Add rtl8821ce-linux-module. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45877) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNa0Y-0001wp-Ut for guix-patches@gnu.org; Sun, 12 Apr 2020 06:38:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNa0V-0000hH-Kf for guix-patches@gnu.org; Sun, 12 Apr 2020 06:38:34 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:58298) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNa0V-0000gR-Cx for guix-patches@gnu.org; Sun, 12 Apr 2020 06:38:31 -0400 From: Michael Rohleder References: <87r1wte2ub.fsf@rohleder.de> <871rotntf5.fsf@nckx> Date: Sun, 12 Apr 2020 12:38:22 +0200 In-Reply-To: <871rotntf5.fsf@nckx> (Tobias Geerinckx-Rice via Guix-patches via's message of "Sun, 12 Apr 2020 07:51:10 +0200") Message-ID: <875ze5dm5d.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" 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: 40568@debbugs.gnu.org Cc: me@tobias.gr --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Tobias, Tobias Geerinckx-Rice via Guix-patches via writes: > Yay! Thank her for the patch. Will do. Thank you for your review! Your suggestions are in the patch appended. > This ought to be a little longer. I can throw something together if > you're without inspiration. Yes, please do. > The AUR package says =E2=80=98with firmware=E2=80=99, which would be prob= lematic if > I'd actually found any. The README also mentions firmware at the very > end. Do you know what they mean? Does this package work out of the > box with Linux-Libre? Is that only for Bluetooth? idk what firmware they mean. This driver depends on cfg80211 which shouldnt be a problem. yes, this works out of the box with Linux-Libre (and not Libre) on the laptop I have tested. I havent tested bluetooth at all. Kind Regards, mike --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-rtl8821ce-linux-module.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: Add rtl8821ce-linux-module From=20b87d051b0ca74550df619e3cc8ed70e8f77f6e99 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Sun, 12 Apr 2020 12:06:31 +0200 Subject: [PATCH] gnu: Add rtl8821ce-linux-module. * gnu/packages/linux.scm (rtl8821ce-linux-module): New variable. =2D-- gnu/packages/linux.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 0be50c11e0..2365d309e4 100644 =2D-- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1057,6 +1057,41 @@ and frame injection. It provides a @code{88XXau} ke= rnel module that supports RTL8812AU, RTL8821AU, and RTL8814AU chips.") (license license:gpl2+)))) =20 +(define-public rtl8821ce-linux-module + (let ((commit "69765eb288a8dfad3b055b906760b53e02ab1dea") + (revision "0")) + (package + (name "rtl8821ce-linux-module") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tomaspinho/rtl8821ce.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "17jiw25k74kv5lnvgycvj2g1n06hbrpjz6p4znk4a62g136rhn4s")))) + (build-system linux-module-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'build + (lambda* (#:key (make-flags '()) inputs #:allow-other-keys) + (setenv "CC" "gcc") + (invoke "make" + (string-append "KSRC=3D" + (assoc-ref inputs "linux-module-buil= der") + "/lib/modules/build") + )))) + #:tests? #f)) + (home-page "https://github.com/tomaspinho/rtl8821ce") + (synopsis "Linux driver for Realtek RTL8821CE wireless network adapt= ers") + (description "This is Realtek's RTL8821CE Linux driver for wireless +network adapters.") + (license license:gpl2)))) + (define-public vhba-module (package (name "vhba-module") =2D-=20 2.26.0 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 There are two types of hard drives: those that have failed, and those that = will. --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl6S754ACgkQfHr/vv7y yyVZgAgAh0dmAznsYz2DKVOr/ZUTdANb8gnDeTBq0SX1Kc2AUTME0UfzAhghnsgr qQjCFyNDDhoXuup/MqLow+yD78POdDtvg8wZZwAmPHeEm7cfg1v0C7Bi4aqd+KMF yRMEVjMrn4EqS5zZXtKzg2i78vc79rfcXABvdYuTe0LF9+U0G+b5XiU+ccdZ5YKK 6lj9f1ABimKrJhKyrSH4o4lp7jEvDFyF/GAnzpOSmFxlcWVmIXOz9VHIcWWOOlp4 vxKuLGj0aK0RlV27EzNaUWANT8CzJrRiEpsA1maw9xCHq6F1Bkk7OtxB4wwpBrwj OJPDg0Rtbv/34tOYiyXXzir8ohf3Lw== =mQVM -----END PGP SIGNATURE----- --==-=-=--