You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-power/pm-utils/files/sleep.d/50unload_alx

19 lines
316 B

#!/bin/sh
# 50unload_alx: unload the alx module during suspend (LP #1173952)
[ -d /sys/module/alx ] || exit 0
. "${PM_FUNCTIONS}"
case "$1" in
suspend)
echo "Unloading alx kernel module ..."
modunload alx && echo Done. || echo Failed.
;;
resume)
echo "Reloading alx kernel module ..."
;;
esac
exit 0