Comment 12 for bug 279143

Revision history for this message
Gonzhauser (gonzhauser) wrote :

The following script seems to fix the 1 minute hang when resuming. It belongs in /etc/pm/sleep.d:
echo 50_dvb_usb_dib0700_quirk:

#!/bin/sh

case "$1" in
 hibernate|suspend)
  rmmod dvb_usb_dib0700
  ;;
 thaw|resume)
  modprobe dvb_usb_dib0700
  ;;
 *) exit $NA
  ;;
esac