mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
RTL8812AU: update to githash f23979f
Includes support for both Kernel 6.7 and 6.8
This commit is contained in:
parent
d108ae118a
commit
4face64645
@ -3,8 +3,8 @@
|
|||||||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
||||||
|
|
||||||
PKG_NAME="RTL8812AU"
|
PKG_NAME="RTL8812AU"
|
||||||
PKG_VERSION="eee82ac1401e211a58a42cd89ab788b4f55040af"
|
PKG_VERSION="f23979f0d20aafb563ac71b56fcbc74268c798c2"
|
||||||
PKG_SHA256="d45d1aec81f293e64dc3e45f4350cf51d628ee08d6a28a9a5eca7d1647c7656f"
|
PKG_SHA256="752d9ae67140966eddc463238fde1f6b86457db22a45f61c13886c3244eaffe1"
|
||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="https://github.com/aircrack-ng/rtl8812au"
|
PKG_SITE="https://github.com/aircrack-ng/rtl8812au"
|
||||||
PKG_URL="https://github.com/aircrack-ng/rtl8812au/archive/${PKG_VERSION}.tar.gz"
|
PKG_URL="https://github.com/aircrack-ng/rtl8812au/archive/${PKG_VERSION}.tar.gz"
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
From c0d16813f5af3b464cdb6dd415c83d1f238e3548 Mon Sep 17 00:00:00 2001
|
|
||||||
From: CamiKaseM7 <camilorivasramunni@gmail.com>
|
|
||||||
Date: Tue, 16 Jan 2024 03:44:34 -0300
|
|
||||||
Subject: [PATCH] Fix change_beacon for kernel 6.7
|
|
||||||
|
|
||||||
---
|
|
||||||
os_dep/linux/ioctl_cfg80211.c | 7 +++++++
|
|
||||||
1 file changed, 7 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/os_dep/linux/ioctl_cfg80211.c b/os_dep/linux/ioctl_cfg80211.c
|
|
||||||
index 510fa4547..a1358047d 100644
|
|
||||||
--- a/os_dep/linux/ioctl_cfg80211.c
|
|
||||||
+++ b/os_dep/linux/ioctl_cfg80211.c
|
|
||||||
@@ -5283,9 +5283,16 @@ static int cfg80211_rtw_start_ap(struct wiphy *wiphy, struct net_device *ndev,
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 7, 0))
|
|
||||||
+static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev,
|
|
||||||
+ struct cfg80211_ap_update *params)
|
|
||||||
+{
|
|
||||||
+ struct cfg80211_beacon_data *info = ¶ms->beacon;
|
|
||||||
+#else
|
|
||||||
static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev,
|
|
||||||
struct cfg80211_beacon_data *info)
|
|
||||||
{
|
|
||||||
+#endif
|
|
||||||
int ret = 0;
|
|
||||||
_adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user