-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make issue in Fedora 41 #373
Comments
The built-in rtw89 driver in the kernel 6.12 is newer than the one in this repo, doesn't it work for you? |
I can confirm this is happening Debian 12 on 6.11.10+bpo-rt-amd64 from backports as well. For me I am unable to use the 6.12 backports version as it is failing for another driver and I can't clear that bug so I backed down to 6.11.
|
Larry passed away last year, so the driver in this repo is no longer maintained. I am curious about what chip do you have? If you want to use the driver in this repo, you need this patch applied. diff --git a/mac80211.c b/mac80211.c
index 0330cfd..30b9983 100644
--- a/mac80211.c
+++ b/mac80211.c
@@ -66,7 +66,11 @@ static int rtw89_ops_start(struct ieee80211_hw *hw)
return ret;
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0)
static void rtw89_ops_stop(struct ieee80211_hw *hw)
+#else
+static void rtw89_ops_stop(struct ieee80211_hw *hw, bool suspend)
+#endif
{
struct rtw89_dev *rtwdev = hw->priv;
--
2.48.1
|
Sorry to hear that :( . This magically started working....I think it may have been a firmware issue as I manually loaded the full linux-firmware bundle to my machine and on the next boot it was found. It is showing as RTL8922AE:
Seems like maybe the existing driver for r8169 will work so long as the right firmware is in place? I was also doing some juggling with the backports headers for 6.12 so maybe i did something i never meant to do and fixed it...either way, it's resolved for me now. Thanks for the quick reply! |
Using gcc-0:14.2.1-3.fc41.x86_64 and kernel 6.12.7-200.fc41.x86_64 and I'm getting the following when I use the make command:
The text was updated successfully, but these errors were encountered: