summarylogtreecommitdiffstats
path: root/atieventsd.sh
diff options
context:
space:
mode:
authorVi0L02015-12-13 22:07:16 +0100
committerVi0L02015-12-13 22:07:16 +0100
commit2b8bbee1a102ff47f11b3c8dac68fb6ecb53a846 (patch)
tree28039313f87ea4dc2c01f62edec0993822a190bc /atieventsd.sh
parent6ba2cb92eac8ae292a785c970f13f5b8ebe882e1 (diff)
downloadaur-2b8bbee1a102ff47f11b3c8dac68fb6ecb53a846.tar.gz
adding support for up to 4.3 linux kernel + adding custom ACPI files for events handling
Diffstat (limited to 'atieventsd.sh')
-rw-r--r--atieventsd.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/atieventsd.sh b/atieventsd.sh
index 16bd9a4fa7b5..35968d29b17a 100644
--- a/atieventsd.sh
+++ b/atieventsd.sh
@@ -3,13 +3,13 @@
. /etc/rc.conf
. /etc/rc.d/functions
-ATID_PID=`pidof -o %PPID /usr/sbin/atieventsd`
+ATID_PID=`pidof -o %PPID /usr/bin/atieventsd`
case "$1" in
start)
rc=0
stat_busy "Starting ATI Events Daemon"
- [ -z "$ATID_PID" ] && /usr/sbin/atieventsd
+ [ -z "$ATID_PID" ] && /usr/bin/atieventsd
rc=$(($rc+$?))
if [ $rc -gt 0 ]; then
stat_fail
@@ -36,6 +36,6 @@ case "$1" in
$0 start
;;
*)
- echo "usage: $0 {start|stop|restart}"
+ echo "usage: $0 {start|stop|restart}"
esac
exit 0