FS#7649 - Pm-utils: error message after resume with bluetooth PCMCIA
Attached to Project:
Arch Linux
Opened by Gary Haller (mehldutt) - Sunday, 22 July 2007, 20:54 GMT
Last edited by Roman Kyrylych (Romashka) - Tuesday, 24 July 2007, 11:01 GMT
Opened by Gary Haller (mehldutt) - Sunday, 22 July 2007, 20:54 GMT
Last edited by Roman Kyrylych (Romashka) - Tuesday, 24 July 2007, 11:01 GMT
|
Details
Description:
Bluetooth PCMCIA (Conceptronic CBT100C) unable to resume. Reinsertion solves this problem. Additional info: #dmesg bcsp_pkt_cull: Peer acked invalid packet bcsp_handle_le_pkt: Found a LE sync pkt, card has reset No errors in /var/log/pm-suspend.log |
This task depends upon
I solved it by adding following hock to /etc/rm/sleap.d
#!/bin/bash
case $1 in
hibernate)
pccardctl eject 0
;;
suspend)
pccardctl eject 0
;;
thaw)
pccardctl insert 0
hciattach ttyS0 0279,950b
;;
resume)
pccardctl insert 0
hciattach ttyS0 0279,950b
;;
*) echo "somebody is calling me totally wrong."
;;
esac