summaryrefslogtreecommitdiffstats
path: root/source/ap/pm-utils/49bluetooth-generic
diff options
context:
space:
mode:
Diffstat (limited to 'source/ap/pm-utils/49bluetooth-generic')
-rw-r--r--source/ap/pm-utils/49bluetooth-generic19
1 files changed, 0 insertions, 19 deletions
diff --git a/source/ap/pm-utils/49bluetooth-generic b/source/ap/pm-utils/49bluetooth-generic
deleted file mode 100644
index 1c88f198d..000000000
--- a/source/ap/pm-utils/49bluetooth-generic
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-. "${PM_FUNCTIONS}"
-
-case "$1" in
- hibernate|suspend)
- if [ -d /sys/devices/virtual/misc/rfkill -a -x /usr/sbin/rfkill -a -x /etc/rc.d/rc.bluetooth ]; then
- rfkill block bluetooth
- fi
- ;;
- thaw|resume)
- if [ -d /sys/devices/virtual/misc/rfkill -a -x /usr/sbin/rfkill -a -x /etc/rc.d/rc.bluetooth ]; then
- rfkill unblock bluetooth
- fi
- ;;
- *)
- ;;
-esac
-