rtl8812au_aircrack-ng: adding 5.3.4 branch back, masked. There is no need to kill this future version, it is future and here for testing

This commit is contained in:
blshkv 2018-10-24 09:26:28 +08:00
parent 03839eb5b2
commit 756fc637c3
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 45 additions and 1 deletions

View file

@ -1,2 +1,2 @@
DIST rtl8812au_aircrack-ng-5.2.20_p20180904.tar.gz 3266179 BLAKE2B 90e8da5586339c86f8f31d5343059cfc239ed701c1f2bdcdd782fc06bd0b64d98064979e5fee836eb9635d64b3746385778586c83718b6845c10108377a9e545 SHA512 794ca5c71f197dc3253374c6ad2b9babdf5656223d1dd68f07a6e7222ddadc53ebd21d62ecbc4320731f49e05038281171e55fd9b7b59bb9de51982c5282dae8
DIST rtl8812au_aircrack-ng-5.3.4_p20181015.tar.gz 3287210 BLAKE2B 76e8de43240e56396fec291302ab85258a6ca550780020bd8a93a8cf254b38058c6e79b4785d247cf14cf4769c5f2380111ef7c70737db1b5a14506d2b5f0bb3 SHA512 4ba7f56ee57faace6a8aa3eb5f66dc26f324d22c32c2f8f26b5aff85d96953cdd352129dd74ddd652599bc6b8bf7be5682bf8f77cf7031d79c7605810bf9ad61
DIST rtl8812au_aircrack-ng-5.3.4_p20181021.tar.gz 3173847 BLAKE2B 37ddc84297df3b11038f2cbee041f79eb0300d73577cffeddbaeb3c1fcd8a517565b84751f73e8b421cc230717d06a6254361249dcd02772ab39cade848d6fa1 SHA512 1309a23daa4e1160719dc4b6dcc43c7eeceefe7c1068fef46fe09dd2e8b2e674cb27795166cb4c9d6774b9d8e6e71d3f6a7f913f21172fc8f87800f5a967c6f2

View file

@ -0,0 +1,44 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit linux-mod
DESCRIPTION="RTL8812AU/21AU and RTL8814AU driver with monitor mode and frame injection"
HOMEPAGE="https://github.com/aircrack-ng/rtl8812au"
if [[ ${PV} == "9999" ]] ; then
KEYWORDS=""
inherit git-r3
EGIT_REPO_URI="https://github.com/aircrack-ng/rtl8812au.git"
EGIT_BRANCH="v5.3.4"
else
#channel control does not work in the monitor mode yet
# KEYWORDS="~amd64 ~x86"
COMMIT="85620abb332ba2355776232aff9f36f9c96c48b6"
SRC_URI="https://github.com/aircrack-ng/rtl8812au/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/rtl8812au-${COMMIT}"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="kernel_linux"
DEPEND="!!net-wireless/rtl8812au_astsam
!!net-wireless/rtl8812au
!!net-wireless/rtl8812au_asus"
BUILD_TARGETS="clean modules"
MODULE_NAMES="88XXau(misc:)"
#compile against selected (not running) target
pkg_setup() {
linux-mod_pkg_setup
BUILD_PARAMS="KVER=${KV_FULL} KSRC=${KERNEL_DIR} RTL8814=1"
}
src_prepare() {
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile
default
}