[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: scaling cpu frequency on new ibook 2.2?



> Does this only work for 2.2 ibooks or also for the ibook2?

Generally, this works on all iBooks2.

I would try it with Minimum and maximum speed.

case "$2" in
ac)
  # GER: Setzt bei Netzbetrieb die Maximalgeschwindigkeit
  # ENG: Set the maximum speed at AC-Power
  echo -n "0%100%100%performance" > /proc/cpufreq
  # GER: Man kann das auch so machen:
  # ENG: Another way to achieve this is:
  # cat /proc/sys/cpu/0/speed-max > /proc/sys/cpu/0/speed
  ;;
battery)
  # GER: Setzt bei Akkubetrieb die Minimalgeschwindigkeit
  # ENG: Set the minimum speed at Battery-Power
  echo -n "0%0%0%powersave" > /proc/cpufreq
  # GER: Man kann das auch so machen:
  # ENG: Another way to achieve this is:
  # cat /proc/sys/cpu/0/speed-min > /proc/sys/cpu/0/speed
  ;;
esac


A good tutorial on the cpu-speed can be found here:
http://www.brodo.de/cpufreq/interface.html

Or have a look at:
http://ibook.rootdir.de/index.php?article_id=34&category_id=2


bye, claas



Reply to: