From: Michael Prokop Date: Tue, 27 Mar 2007 08:48:57 +0000 (+0200) Subject: reintroduce cpufreq-detect.sh X-Git-Tag: 0.6.26 X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=8e5e4e1209a0795dc731c1e3ac2cc8efda9d6b2e;hp=c0d02b9150a82a55d97063ead9ce6f60fa82df37 reintroduce cpufreq-detect.sh --- diff --git a/autoconfig.functions b/autoconfig.functions index 1507172..e129cae 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -344,7 +344,7 @@ config_time(){ # hwclock uses the TZ variable [ -r /etc/timezone ] && TZ=$(cat /etc/timezone) [ -n "$TZ" ] || TZ=Europe/Vienna - + if ! [ -r /dev/rtc ] ; then ewarn "Realtime clock not available, skipping execution of hwclock therefore." ; eend 0 else @@ -394,7 +394,7 @@ else einfo "VMware: Copying /etc/X11/xorg.conf.vmware to /etc/X11/xorg.conf" cp /etc/X11/xorg.conf.vmware /etc/X11/xorg.conf ; eend $? fi - fi + fi fi fi fi @@ -1234,18 +1234,26 @@ else else if /usr/sbin/laptop-detect ; then einfo "Detected Laptop - trying to use cpu frequency scaling:" - eindent - einfo "Loading module cpufreq_ondemand and adjusting scaling_governor." - if modprobe cpufreq_ondemand && RC=0 || RC=1 ; then - for file in $(find /sys/devices/system/cpu/ -name scaling_governor 2>/dev/null) ; do - echo ondemand > $file - done - fi - eend $RC - eoutdent - fi - fi -fi + if [ -r /usr/bin/cpufreq-detect.sh ] ; then + eindent + . /usr/bin/cpufreq-detect.sh + if [ -n "$MODULE" -a "$MODULE" != none ]; then + einfo "Loading modules ${MODULE} and cpufreq_ondemand, setting ondemand governor" + modprobe "$MODULE" 1>>$DEBUG || modprobe "$MODULE_FALLBACK" 1>>$DEBUG + if modprobe cpufreq_ondemand && RC=0 || RC=1 ; then + for file in $(find /sys/devices/system/cpu/ -name scaling_governor 2>/dev/null) ; do + echo ondemand > $file + done + fi + eend $RC + else + ewarn "Could not detect an appropriate CPU for use with cpu frequency scaling - skipping." && eend 1 + fi + eoutdent + fi # cpufreq-detect + fi # laptop-detect + fi # cpufreq_check +fi # checkbootparam nocpu } # }}} @@ -1631,7 +1639,7 @@ EOF chmod 755 /etc/init.d/xstartup sed -i 's#^6:.*#6:2345:respawn:/bin/zsh --login -c "/etc/init.d/xstartup ; /bin/zsh"#' /etc/inittab - + /sbin/telinit q ; eend $? if grep -q '^allowed_users=' /etc/X11/Xwrapper.config ; then diff --git a/debian/changelog b/debian/changelog index 18d6125..49d907f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +grml-autoconfig (0.6.26) unstable; urgency=low + + * Reintroduce /usr/bin/cpufreq-detect.sh code, otherwise + cpu-screen and cpu frequency scaling won't work. + [Closes: issue178] + [Closes: issue179] + + -- Michael Prokop Tue, 27 Mar 2007 10:47:38 +0200 + grml-autoconfig (0.6.25) unstable; urgency=low * Improve informational messages for VMware/Qemu.