summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d')
-rw-r--r--sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d43
1 files changed, 0 insertions, 43 deletions
diff --git a/sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d b/sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d
deleted file mode 100644
index b7ffa4f0a2ed..000000000000
--- a/sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufreqd/files/cpufreqd-2.2.1-init.d,v 1.1 2006/11/30 16:42:10 peper Exp $
-
-CONFIGFILE=/etc/cpufreqd.conf
-
-depend() {
- need localmount
- use logger lm_sensors
-}
-
-checkconfig() {
- if [[ ! -f ${CONFIGFILE} ]]; then
- eerror "Configuration file ${CONFIGFILE} not found"
- return 1
- fi
-
- if [[ ! -e /proc/cpufreq ]] ; then
- for cpu in /sys/devices/system/cpu/cpu[0-9]* ; do
- # We need just one cpu supporting freq scaling.
- [[ -e ${cpu}/cpufreq ]] && return 0
- done
- eerror "cpufreqd requires the kernel to be configured with CONFIG_CPU_FREQ"
- eerror "Make sure that the appropiate drivers for your CPU are available."
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- ebegin "Starting CPU Frequency Daemon"
- start-stop-daemon --start --exec /usr/sbin/cpufreqd -- \
- -f ${CONFIGFILE}
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping CPU Frequency Daemon"
- start-stop-daemon --stop --exec /usr/sbin/cpufreqd
- eend ${?}
-}