net-wireless/rtl8821ce: New Package

Realtek RTL8821CE Driver module for Linux kernel.

Closes: https://bugs.gentoo.org/696980
Tested-by: Aleksandr Batyuk <abbat.2008@gmail.com>
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Aleksandr Batyuk <abbat.2008@gmail.com>
This commit is contained in:
Aleksandr Batyuk
2020-03-17 13:04:53 +06:00
parent 214fbfbaea
commit ec183334ef
4 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST rtl8821ce-20191119.tar.gz 4519557 BLAKE2B e47add6566c68ea0408a34f8a374ca6cec92e68a269991f1e48c5459fea82feae8c6eecb22f06785414dc23e2c1cf889b4bda95ab49210b4edbf93aee1c9ddc5 SHA512 b0a248bfc7abea57163b1ad29946cce509cfac6100c2f8129dfe347539267ff6840bdef845c6939bbf4963707ded107345133b1ec56da95e334d05c67f0e4122

View File

@@ -0,0 +1,17 @@
diff --git a/hal/rtl8821c/pci/rtl8821ce_halmac.c b/hal/rtl8821c/pci/rtl8821ce_halmac.c
index 1100cdf..f7ae7b0 100755
--- a/hal/rtl8821c/pci/rtl8821ce_halmac.c
+++ b/hal/rtl8821c/pci/rtl8821ce_halmac.c
@@ -24,7 +24,11 @@ static u8 pci_write_port_not_xmitframe(void *d, u32 size, u8 *pBuf, u8 qsel)
PADAPTER padapter = dvobj_get_primary_adapter(pobj);
u32 page_size = 0;
u8 *txbd;
+#ifdef CONFIG_64BIT
u64 txbd_dma;
+#else
+ dma_addr_t txbd_dma;
+#endif
u8 ret = _SUCCESS;
dma_addr_t mapping;

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>abbat.2008@gmail.com</email>
<name>Aleksandr Batyuk</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit linux-mod
COMMIT="27f98a55cc48b9a26e6eb4127976c8feb95867d8"
DESCRIPTION="Realtek RTL8821CE Driver module for Linux kernel"
HOMEPAGE="https://github.com/tomaspinho/rtl8821ce"
SRC_URI="https://github.com/tomaspinho/rtl8821ce/archive/${COMMIT}.tar.gz -> rtl8821ce-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
DEPEND="virtual/linux-sources"
S="${WORKDIR}/rtl8821ce-${COMMIT}"
MODULE_NAMES="8821ce(net/wireless)"
BUILD_TARGETS="all"
src_unpack() {
unpack ${A}
cd "${S}"
}
src_prepare(){
# fix 32bit build
epatch "${FILESDIR}/32bit.patch"
}
pkg_setup() {
linux-mod_pkg_setup
}
src_compile(){
linux-mod_src_compile
}
src_install() {
linux-mod_src_install
}
pkg_postinst() {
linux-mod_pkg_postinst
}