Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| via_epia:longhaul [2008/04/22 15:14] – angelegt gerald | via_epia:longhaul [2024/06/07 11:49] (aktuell) – gerald | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | ====== Stromsparmechanismus des Via Epia ====== | ||
| + | |||
| + | |||
| Via Epia unterstützt Powersave: kann Frequenz runterregeln. Bei Linux macht das das Longhaul-Modul (Kernelmodul zum CPU-Reglen EPIA). | Via Epia unterstützt Powersave: kann Frequenz runterregeln. Bei Linux macht das das Longhaul-Modul (Kernelmodul zum CPU-Reglen EPIA). | ||
| - | Geregelt wird dann vom User (Userspace) oder automatischn | + | Geregelt wird dann vom User (Userspace) oder automatisch |
| The Epia SP8000E uses a 800MHz Nemiah core CPU. By loading the longhaul module - you can throttle the CPU (Tested with 2.6.11.6). Please note that there are many patches to the cpufrequency control - and many are unstable. If your System locks-Hard - you have a bad implementation :) | The Epia SP8000E uses a 800MHz Nemiah core CPU. By loading the longhaul module - you can throttle the CPU (Tested with 2.6.11.6). Please note that there are many patches to the cpufrequency control - and many are unstable. If your System locks-Hard - you have a bad implementation :) | ||
| Zeile 57: | Zeile 60: | ||
| script {hi/lo} | script {hi/lo} | ||
| - | + | <code bash> | |
| - | #!/bin/sh | + | #!/bin/bash |
| # | # | ||
| # sets the cpu-frequency low or high, | # sets the cpu-frequency low or high, | ||
| # or (de)loads the longhaul-module | # or (de)loads the longhaul-module | ||
| # FOR VIA EPIA ONLY | # FOR VIA EPIA ONLY | ||
| - | # made by Gerald | + | # made by Gerald |
| SYSPATH=/ | SYSPATH=/ | ||
| Zeile 84: | Zeile 87: | ||
| modprobe cpufreq_${POWERMODE} | modprobe cpufreq_${POWERMODE} | ||
| echo ", cpufreq_${POWERMODE}" | echo ", cpufreq_${POWERMODE}" | ||
| - | echo -n " | + | echo -n " |
| echo " | echo " | ||
| echo " | echo " | ||
| Zeile 95: | Zeile 98: | ||
| $0 status | $0 status | ||
| ;; | ;; | ||
| - | | + | |
| POWERMODE=performance | POWERMODE=performance | ||
| echo -n " | echo -n " | ||
| Zeile 138: | Zeile 141: | ||
| echo -n "all available frequencies: | echo -n "all available frequencies: | ||
| cat / | cat / | ||
| + | </ | ||