Bugzilla – Bug 153345
failsafe boot should have POWERSAVED=off
Last modified: 2008-07-27 15:56:03 UTC
Often we have problems with cpufreq and with this option it can be turned off at boot.
This is for booting of the installed system, or not?
Booting the installed system. install system doesn't use cpufreq afaik
then it's a yast bootloader config thing
A fix is in yast2-bootloader-2.13.71.
Prmgmt decided that this patch needs more testing before it can be accepted. ak@: can you please test the packages in ~odabrunz/Exports/yast2-bootloader/153345? The patch is: ------------------------------------------------------------------------ r31365 | odabrunz | 2006-06-07 16:28:58 +0000 (Wed, 07 Jun 2006) | 3 lines Changed paths: M /trunk/bootloader/src/modules/BootArch.ycp - add "powersaved=off" to append line in failsafe section for i386, x86_64 and ia64 (#153345) ------------------------------------------------------------------------ Index: src/modules/BootArch.ycp =================================================================== --- src/modules/BootArch.ycp (revision 31364) +++ src/modules/BootArch.ycp (revision 31365) @@ -45,15 +45,15 @@ string ret = ""; if (Arch::i386 ()) { - ret = "showopts ide=nodma apm=off acpi=off noresume nosmp noapic maxcpus=0 edd=off"; + ret = "showopts ide=nodma apm=off acpi=off noresume nosmp noapic maxcpus=0 edd=off powersaved=off"; } else if (Arch::x86_64 ()) { - ret = "showopts ide=nodma apm=off acpi=off noresume edd=off"; + ret = "showopts ide=nodma apm=off acpi=off noresume edd=off powersaved=off"; } else if (Arch::ia64 ()) { - ret = "ide=nodma nohalt noresume"; + ret = "ide=nodma nohalt noresume powersaved=off"; } else {
Forgot to reopen this.
Sorry I don't have any bandwidth to reinstall machines now. Please ask someone else.
move to 11.0 we should open a Fate request for this
reassign to yast2-bootloader maintainer
This fix is trivial and I don't see any reason why the patch above should not work, it is correct (provided kernel behaves as expected). IMO not worth a Fate entry.
Jozo, please, apply this patch immediatelly after 11.0 is out so that we get feedback of possible problems in the Alpha phase.
added to trunk...