This commit is contained in:
Rick Farina (Zero_Chaos) 2019-11-27 14:37:19 -05:00
parent 84cc5652a4
commit 4466146ba2
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 6 additions and 0 deletions

View file

@ -39,5 +39,8 @@ pkg_setup() {
src_prepare() {
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile
sed -i 's#-DCONFIG_IEEE80211W#-DCONFIG_IEEE80211W -DCONFIG_RTW_80211R#' Makefile
#these are not 88xxau devices
#https://github.com/aircrack-ng/rtl8812au/issues/492
sed -i '/0x0115/d' os_dep/linux/usb_intf.c || die
default
}

View file

@ -45,6 +45,9 @@ pkg_setup() {
src_prepare() {
sed -i 's#CONFIG_80211W = n#CONFIG_80211W = y#' Makefile || die
sed -i 's#-DCONFIG_IEEE80211W#-DCONFIG_IEEE80211W -DCONFIG_RTW_80211R#' Makefile || die
#these are not 88xxau devices
#https://github.com/aircrack-ng/rtl8812au/issues/492
sed -i '/0x0115/d' os_dep/linux/usb_intf.c || die
default
}