瀏覽代碼

Revert "sleep script no longer needs to unload and reload modules"

This reverts commit 787756bd11340cd656f374cf82f35e867d100c1c.
Jake Day 6 年之前
父節點
當前提交
bd4eecf710
共有 1 個文件被更改,包括 21 次插入21 次删除
  1. 21 21
      root/lib/systemd/system-sleep/sleep

+ 21 - 21
root/lib/systemd/system-sleep/sleep

@@ -2,30 +2,30 @@
 case $1 in
   pre)
     # unload the modules before going to sleep
-    #systemctl stop NetworkManager.service
-    #modprobe -r intel_ipts
-    #modprobe -r mei_me
-    #modprobe -r mei
-    #modprobe -r mwifiex_pcie;
-    #modprobe -r mwifiex;
-    #modprobe -r cfg80211;
+    systemctl stop NetworkManager.service
+    modprobe -r intel_ipts
+    modprobe -r mei_me
+    modprobe -r mei
+    modprobe -r mwifiex_pcie;
+    modprobe -r mwifiex;
+    modprobe -r cfg80211;
     ;;
   post)
     # need to cycle the modules on a resume and after the reset is called, so unload...
-    #modprobe -r intel_ipts
-    #modprobe -r mei_me
-    #modprobe -r mei
-    #modprobe -r mwifiex_pcie;
-    #modprobe -r mwifiex;
-    #modprobe -r cfg80211;
+    modprobe -r intel_ipts
+    modprobe -r mei_me
+    modprobe -r mei
+    modprobe -r mwifiex_pcie;
+    modprobe -r mwifiex;
+    modprobe -r cfg80211;
     # and reload
-    #modprobe -i intel_ipts
-    #modprobe -i mei_me
-    #modprobe -i mei
-    #modprobe -i cfg80211;
-    #modprobe -i mwifiex;
-    #modprobe -i mwifiex_pcie;
-    #echo 1 > /sys/bus/pci/rescan
-    #systemctl restart NetworkManager.service
+    modprobe -i intel_ipts
+    modprobe -i mei_me
+    modprobe -i mei
+    modprobe -i cfg80211;
+    modprobe -i mwifiex;
+    modprobe -i mwifiex_pcie;
+    echo 1 > /sys/bus/pci/rescan
+    systemctl restart NetworkManager.service
     ;;
 esac