Compare commits

..

No commits in common. "v961" and "v963" have entirely different histories.
v961 ... v963

2 changed files with 33 additions and 15 deletions

16
etc/init/cpufreqd.conf Normal file
View File

@ -0,0 +1,16 @@
description "Startup the cpufreq daemon for Powermanagement"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [12345] and (started mountfs))
stop on (runlevel [06] and (stopping udev))
console none
pre-start script
/sbin/CheckPid /var/run/cpufreqd.pid
end script
exec /usr/sbin/cpufreqd -D
respawn

View File

@ -12,6 +12,7 @@
# #
# #
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd` WDIR=`pwd`
cd etc/init.d cd etc/init.d
chmod 755 smtp chmod 755 smtp
@ -27,3 +28,4 @@ for i in 2 3 4 5; do
cd .. cd ..
done done
cd $WDIR cd $WDIR
fi