From 6d18b0034b218b570a8b319b95e1691c6416b472 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Fri, 19 Jul 2013 03:37:12 +0200 Subject: [PATCH] suspend: add ehci_pci to blacklisted modules Recent kernels have ehci-hcd split into ehci-hcd and ehci-pci, so remove both of them. --- qubes-rpc/prepare-suspend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qubes-rpc/prepare-suspend b/qubes-rpc/prepare-suspend index d8f40d2..a12b1af 100755 --- a/qubes-rpc/prepare-suspend +++ b/qubes-rpc/prepare-suspend @@ -9,8 +9,8 @@ if [ x"$action" == x"suspend" ]; then for if in `ls /sys/class/net|grep -v "lo\|vif"`; do ip l s $if down done - modprobe -r uhci_hcd ehci_hcd + modprobe -r uhci_hcd ehci_hcd ehci_pci else - modprobe ehci_hcd; modprobe uhci_hcd; + modprobe ehci_pci; modprobe uhci_hcd; nmcli nm sleep false || { [ -x /bin/systemctl ] && systemctl start NetworkManager.service; } || service qubes-core-netvm start fi