-
Notifications
You must be signed in to change notification settings - Fork 145
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
Double entry in Networkmanager and no reconnect after suspend #152
Comments
CONFIG_CONCURRENT_MODE is turned ON in the standard system. That is the reason you get two interfaces. If you do not want them, then change Makefile. As I have stated many, many, many times, Bluetooth drivers are provided as a convenience. I do not debug them. I do not know why the device fails after suspend. |
I was facing a similar issue with the the network interface not reconnecting on resume. I did some tinkering in the Makefile to no avail by changing the following options: CONFIG_USB_AUTOSUSPEND = n I changed these two options from n to y as my device is listed as a USB device. I believe that is the way it is manufactured, as a USB device as opposed to directly on the bridge or PCIE or whatever. CONFIG_USB_AUTOSUSPEND = y Then I did the following: sudo modprobe -r 8723bu Sadly, these changes didn't fix the issue, but I did find a simple workaround. After resuming, simply run: That will get the interface back up. Optionally, just make a simple bash script to do it for you: sudo modprobe -r 8723bu |
I solved this problem on my Cube i7 Stylus (Ubuntu 18.04) using script that will be executed after suspend. Script: PROGNAME=$(basename "$0") function log { log "Running $action $state" if [[ $state == post ]]; then |
You two have blacklisted rtl8xxxu Kernel driver? |
I was also affected by the not connecting after suspend problem. Solved by the solution here, https://askubuntu.com/questions/1029250/ubuntu-18-04-ethernet-disconnected-after-suspend and above, with the exception that I had to use modprobe rtl8723bu to insert the module again. This was on Ubuntu 20.04 kernel 5.4.0-51-generic #56-Ubuntu SMP dkms status lsusb|grep -i real
|
@kevin201 thank you, it helps! |
Hello,
I followed your instructions to get the 8723bu driver installed. I also blocked the RTL 8xxxu.
In my Networkmanager I have two entries both named Realtek Wlan. Both work both the driver 8723bu. One is working fine, the other looks fine but does not really work (or very slow). Bluetooth is working also fine. After suspend I cant connect to none of the entries and bluetooth is not working. I did not cancel concurrence mode. Any ideas?
The text was updated successfully, but these errors were encountered: