|
Bugzilla – Full Text Bug Listing |
| Summary: | failsafe boot should have POWERSAVED=off | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.1 | Reporter: | Andreas Kleen <ak> |
| Component: | Bootloader | Assignee: | Jozef Uhliarik <juhliarik> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P2 - High | CC: | jplack, jsrain, stefan.fent |
| Version: | Alpha 0 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Andreas Kleen
2006-02-24 11:02:51 UTC
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... |