rtl8812au: initial driver, really bad but it works in managed mode

This commit is contained in:
Zero_Chaos 2014-03-23 20:03:20 +00:00
parent 04e6ce3700
commit 11730f4714
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1 @@
EBUILD rtl8812au-9999.ebuild 597 SHA256 e7a40197d16a59a4efc942ff065cc478072bc9107d4598c54e1fae17f134834b SHA512 969e2297d4499692a18985334fd55b9e71e3f54a15e6cdcf81ffdc6d329cce34e18cc81a007a984ad06c821eb8384a3cf71ebfa1b35967d4f0b6845fc7f19af1 WHIRLPOOL a79d5bd41f90e3ece89594dbc0d3ef3dab7648eeb34930780acf14d85d9f611f0128bbed3a93d366c54de3bde9bdba06cf7ff90f12a0243e8ddf54d0e1750f88

View file

@ -0,0 +1,30 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-r3 linux-info
DESCRIPTION=""
HOMEPAGE=""
EGIT_REPO_URI="https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git"
LICENSE=""
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_compile() {
set_arch_to_kernel
KSRC="${KV_DIR}" KVER="${KV_FULL}" emake
}
src_install() {
insinto "/lib/modules/${KV_FULL}/kernel/drivers/net/wireless/"
doins 8812au.ko
#emake MODDESTDIR="${ED}/lib/modules/${KV_FULL}/kernel/drivers/net/wireless/" install
}