[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-18 Thread Steve Kowalik
powernowd (0.97-2ubuntu2) hardy; urgency=low [ dAniel hAhler ] * debian/init.d: - skip use_ondemand if $OPTIONS != -q are given (LP: #67341) - activate [...]/cpufreq/ondemand/ignore_nice_load in use_ondemand, when using ondemand governor instead of powernowd (LP: #60042)

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-18 Thread Steve Kowalik
powernowd (0.97-2ubuntu2) hardy; urgency=low [ dAniel hAhler ] * debian/init.d: - skip use_ondemand if $OPTIONS != -q are given (LP: #67341) - activate [...]/cpufreq/ondemand/ignore_nice_load in use_ondemand, when using ondemand governor instead of powernowd (LP: #60042)

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-13 Thread Daniel Holbach
Sorry, bug spam necessary because of bug 176085. This bug has a patch attached, which needs review and sponsoring. -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-08 Thread dAniel hAhler
** Description changed: Binary package hint: powernowd In /usr/share/powernowd/cpufreq-detect.sh, line 84 is as follows: if [ $CPU_FAMILY == 6 ]; then This causes an error message to be printed at boot time: [: 94: ==: unexpected operator The fix is to remove one

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-06 Thread dAniel hAhler
Thanks Joshua, I've updated the debdiff. -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-03 Thread dAniel hAhler
Thanks for reporting this and the patch. I've already applied the patch from bug 117446, which includes this fix. I'll collect some more fixes for powernowd and then attach the debdiff to this bug. ** Changed in: powernowd (Ubuntu) Importance: Undecided = Low Status: Confirmed = In

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-03 Thread dAniel hAhler
The bug should be fixed by the upload to my PPA: https://launchpad.net/~blueyed/+archive/+index?field.name_filter=powernow Please test it and provide feedback if it works. Thanks. (The actual patch is attached to bug 67341) ** Changed in: powernowd (Ubuntu) Assignee: dAniel hAhler

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-03 Thread Joshua Swink
+++ powernowd-0.97/debian/cpufreq-detect.sh @@ -0,0 +1,98 @@ +#! /bin/bash + It would be good if this were #!/bin/sh instead. -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-01 Thread Ralph Janke
** Attachment added: debdiff with fix http://launchpadlibrarian.net/10685829/powernowd_0.97-1ubuntu8.debdiff -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu.

[Bug 162524] Re: error in cpufreq-detect.sh

2007-12-01 Thread Ralph Janke
Set back to confirmed to be picked up by sponsor ** Changed in: powernowd (Ubuntu) Assignee: Ralph Janke (txwikinger) = (unassigned) Status: In Progress = Confirmed -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you

[Bug 162524] Re: error in cpufreq-detect.sh

2007-11-16 Thread Ralph Janke
I can confirm that this creates an error message when run by /bin/sh. The fix on the other hand works. ** Changed in: powernowd (Ubuntu) Status: Incomplete = Confirmed ** Changed in: powernowd (Ubuntu) Assignee: Ralph Janke (txwikinger) = (unassigned) -- error in cpufreq-detect.sh

[Bug 162524] Re: error in cpufreq-detect.sh

2007-11-16 Thread Ralph Janke
** Changed in: powernowd (Ubuntu) Assignee: (unassigned) = Ralph Janke (txwikinger) Status: Confirmed = In Progress -- error in cpufreq-detect.sh https://bugs.launchpad.net/bugs/162524 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug

[Bug 162524] Re: error in cpufreq-detect.sh

2007-11-13 Thread Ralph Janke
Thanks for your report. According to the bash documentation, both == and = are absolutely synonym. Therefore there is either a different problem, or this is no bug. I could not find any fault with this script tested under gutsy, could you please provide more information. Thanks ** Changed in:

[Bug 162524] Re: error in cpufreq-detect.sh

2007-11-13 Thread Joshua Swink
/bin/sh is a link to dash in Gutsy, which is sh-compliant, not bash- compliant. == is a syntax error in bourne shell script. cpufreq-detect.sh does begin with #! /bin/bash, but it is still run under /bin/sh. That's because /etc/init.d/rc is executed normally, and begins with #!/bin/sh, so it runs