Comment 35 for bug 625364

Revision history for this message
Scott Moser (smoser) wrote : Re: lenovo/thinkpad T400[s]/T500/W500/X60 suspend fails

you can put the work around into the pm-utils path by adding the following to /etc/pm/sleep.d/10-lp-bug-625364. Note, its a work around, not a fix, but it makes me very happy to not crash. Note, you need to write the file as root, then make sure its executable (chmod 755)

#!/bin/sh
# LP: #625364
# /etc/pm/sleep.d/10-lp-bug-625364

case "${1}" in
   suspend|hibernate)
      echo "${1}: changing to vt 1 for LP: #625364 work around";
      chvt 1;;
   resume|thaw)
      echo "${1}: changing to vt 7 for LP: #625364 work around";
      chvt 7;;
esac