############################################ # DESCRIPTION: Fix to make your VoodooHDA # # kext LOAD after waking from sleep. # # It fixes VoodooHDA problems with sleep. # # ---------------------------------------- # # VERSION: v.1.1 # # ---------------------------------------- # # AUTHOR: Thireus # # ---------------------------------------- # # INFO: http://thireus.dareyourmind.net # ############################################ # Vars TRIES_LOAD=20 # Script echo "Thireus - rc.wakeup - VoodooHDA" >> /var/log/system.log i=0 while [[ $i -lt $TRIES_LOAD ]] && ! /sbin/kextload /System/Library/Extensions/VoodooHDA.kext; do echo "Thireus - VoodooHDA - kextload "$i >> /var/log/system.log sleep $i ((i++)) done # End of script