1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-21 10:21:24 +02:00

Added ati closed source drivers.

This commit is contained in:
root
2010-03-27 13:22:52 +01:00
parent 752c7c4472
commit 471cbe83e4
32 changed files with 3390 additions and 0 deletions
@@ -0,0 +1,22 @@
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/files/atieventsd.rc6,v 1.2 2006/08/04 12:20:19 chrb Exp $
depend() {
need acpid
}
start() {
start-stop-daemon --start --pidfile /var/run/atieventsd.pid \
--exec /opt/ati/sbin/atieventsd -- ${ATIEVENTSDOPTS}
local pid=`pidof atieventsd`
echo $pid > /var/run/atieventsd.pid
eend $?
}
stop() {
start-stop-daemon --stop --quiet --pidfile /var/run/atieventsd.pid
eend $?
}