diff options
Diffstat (limited to 'app-laptop/laptop-mode-tools/files')
5 files changed, 0 insertions, 74 deletions
diff --git a/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.11-r1 b/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.11-r1 deleted file mode 100644 index db6c2bd3bc3e..000000000000 --- a/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.11-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 f5c882e2ba1953b80abd1d7cd38c3a51 laptop-mode-tools_1.11.tar.gz 51501 diff --git a/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.30 b/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.30 deleted file mode 100644 index 1347b90b3278..000000000000 --- a/app-laptop/laptop-mode-tools/files/digest-laptop-mode-tools-1.30 +++ /dev/null @@ -1 +0,0 @@ -MD5 641e899140ca4933327af05125012064 laptop-mode-tools_1.30.tar.gz 84126 diff --git a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-cpu-governor.patch b/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-cpu-governor.patch deleted file mode 100644 index 6b55b754f529..000000000000 --- a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-cpu-governor.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urp laptop-mode-tools-1.11/usr/sbin/laptop_mode laptop-mode-tools-1.11-cpu-governor/usr/sbin/laptop_mode ---- laptop-mode-tools-1.11/usr/sbin/laptop_mode 2005-10-29 16:37:26.000000000 +0200 -+++ laptop-mode-tools-1.11-cpu-governor/usr/sbin/laptop_mode 2006-01-02 16:09:10.000000000 +0100 -@@ -603,7 +603,7 @@ if [ $CONTROL_CPU_FREQUENCY -eq 1 ] ; th - echo "Setting CPU minimum frequency for cpu $THISCPU to $THIS_CPU_MINFREQ." > $OUTPUT - echo $THIS_CPU_MINFREQ > $THISCPU/cpufreq/scaling_min_freq - echo "Setting CPU frequency governor for cpu $THISCPU to $THIS_CPU_GOVERNOR." > $OUTPUT -- echo $THIS_GOVERNOR > $THISCPU/cpufreq/scaling_governor -+ echo $THIS_CPU_GOVERNOR > $THISCPU/cpufreq/scaling_governor - fi - done - fi diff --git a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-init.d b/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-init.d deleted file mode 100644 index ed5f0ea6d356..000000000000 --- a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-init.d +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.11-init.d,v 1.1 2005/10/29 19:00:42 brix Exp $ - -checkconfig() { - if [ ! -f /proc/sys/vm/laptop_mode ]; then - eerror "Kernel does not support laptop_mode" - return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Starting laptop_mode" - touch /var/run/laptop-mode-enabled && /usr/sbin/laptop_mode auto &> /dev/null - eend $? -} - -stop() { - ebegin "Stopping laptop_mode" - /usr/sbin/laptop_mode stop &> /dev/null && rm -f /var/run/laptop-mode-enabled - eend $? -} diff --git a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.30-init.d b/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.30-init.d deleted file mode 100644 index 519c2f66827b..000000000000 --- a/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.30-init.d +++ /dev/null @@ -1,35 +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/app-laptop/laptop-mode-tools/files/laptop-mode-tools-1.30-init.d,v 1.1 2006/02/23 23:29:00 brix Exp $ - -opts="${opts} reload" - -checkconfig() { - if [[ ! -f /proc/sys/vm/laptop_mode ]]; then - eerror "Kernel does not support laptop_mode" - return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Starting laptop_mode" - touch /var/run/laptop-mode-enabled - /usr/sbin/laptop_mode auto init &> /dev/null - eend ${?} -} - -stop() { - ebegin "Stopping laptop_mode" - rm -f /var/run/laptop-mode-enabled - /usr/sbin/laptop_mode stop init &> /dev/null - eend ${?} -} - -reload() { - ebegin "Restarting laptop_mode" - /usr/sbin/laptop_mode auto init force &> /dev/null - eend ${?} -} |