blob: 3849e9fd56713f69daa2c5cfcd488dc17dccf6b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/files/cpufrequtils-init.d-007,v 1.1 2013/04/21 09:21:06 lxnay Exp $
change() {
ebegin "Running cpufreq-set ${opts}"
/usr/libexec/cpufrequtils-change.sh "${@}"
eend $?
}
start() {
change "${START_OPTS}" ${SYSFS_EXTRA}
}
stop() {
change "${STOP_OPTS}"
}
|