FS#10911 - Error in /etc/rc.d/cpufreq
Attached to Project:
Arch Linux
Opened by Jaroslaw Swierczynski (swiergot) - Monday, 14 July 2008, 17:16 GMT
Last edited by Kevin Piche (kpiche) - Thursday, 17 July 2008, 04:20 GMT
Opened by Jaroslaw Swierczynski (swiergot) - Monday, 14 July 2008, 17:16 GMT
Last edited by Kevin Piche (kpiche) - Thursday, 17 July 2008, 04:20 GMT
|
Details
In that file the following code can be found:
modprobe $mod > /dev/null 2>&1 params="-g $governor" if [ $? -eq 0 ]; then This is obviously an error since the "if" statement is supposed to test modprobe's exit code. Please change to: modprobe $mod > /dev/null 2>&1 if [ $? -eq 0 ]; then params="-g $governor" |
This task depends upon
Closed by Kevin Piche (kpiche)
Thursday, 17 July 2008, 04:20 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in cpufrequtils 004-1
Thursday, 17 July 2008, 04:20 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in cpufrequtils 004-1