1#!/bin/sh 2# Log some extra information at the beginning of a suspend/resume cycle. 3# TODO: Make this hook only run when PM_DEBUG is true? 4 5. "${PM_FUNCTIONS}" 6 7case "$1" in 8 hibernate|suspend) 9 hciconfig hci0 down 10 ifconfig wlan0 down 11 ;; 12 thaw|resume) 13 kilall brcm_patchram_plus1 14 ifconfig wlan0 up 15 bt_pcba_test& 16 ;; 17 *) exit $NA 18 ;; 19esac 20