diff options
Diffstat (limited to 'gentoo/files/cputemp2maxfreq.init')
-rwxr-xr-x | gentoo/files/cputemp2maxfreq.init | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gentoo/files/cputemp2maxfreq.init b/gentoo/files/cputemp2maxfreq.init new file mode 100755 index 0000000..83a3798 --- /dev/null +++ b/gentoo/files/cputemp2maxfreq.init @@ -0,0 +1,17 @@ +#!/sbin/openrc-run +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +name="cputemp2maxfreq daemon" +description="Daemon to scale scale_max_freq when CPU temperature rises" +command=/usr/sbin/cputemp2maxfreq +command_args="-l $LOGGER -t $TEMPERATURE $ARGS" + +start() { + ebegin "Starting $NAME" + start-stop-daemon --start --background \ + --make-pidfile --pidfile /var/run/cputemp2maxfreq.pid \ + --exec ${command} -- ${command_args} + eend $? +} + |