File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,14 @@ conflicting drivers. The correct ones are:
88
88
89
89
If you have other modules installed, see if you blacklisted them correctly.
90
90
91
+ ##### Problem with recovery after sleep or hibernation
92
+ Some BIOSs have trouble changing power state from D3hot to D0. If you have this problem, then
93
+
94
+ sudo cp suspend_rtw8822be /usr/lib/systemd/system-sleep/.
95
+
96
+ That script will unload the driver before sleep or hibernation, and reload it following resumption.
97
+ f you have some device other than the 8822be, edit the script before copying it.
98
+
91
99
##### How to disable/enable a Kernel module
92
100
``` bash
93
101
sudo modprobe -r rtw_8723de # This unloads the module
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ if [ " ${1} " == " pre" ]; then
3
+ modprobe -rv rtw_8822be
4
+ elif [ " ${1} " == " post" ]; then
5
+ modprobe -v rtw_8822be
6
+ fi
You can’t perform that action at this time.
0 commit comments