Bug 531304
| Summary: | Fedora 12 Beta install DVD fails to start in rescue mode on PowerPC | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Nikolay Nikolov <nickysn> | ||||||
| Component: | anaconda | Assignee: | Anaconda Maintenance Team <anaconda-maint-list> | ||||||
| Status: | CLOSED DUPLICATE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||
| Severity: | high | Docs Contact: | |||||||
| Priority: | low | ||||||||
| Version: | rawhide | CC: | anaconda-maint-list, ddumas, hdegoede, jvonau3, msivak, vanmeeuwen+fedora | ||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | powerpc | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | Environment: | ||||||||
| Last Closed: | 2009-11-08 08:10:25 UTC | Type: | --- | ||||||
| Regression: | --- | Mount Type: | --- | ||||||
| Documentation: | --- | CRM: | |||||||
| Verified Versions: | Category: | --- | |||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||
| Embargoed: | |||||||||
| Attachments: |
|
||||||||
|
Description
Nikolay Nikolov
2009-10-27 16:39:22 UTC
Please attach the logs on tty4 as well. Created attachment 366442 [details]
tty4, before selecting "Local CD/DVD"
Created attachment 366443 [details]
tty4, after selecting "Local CD/DVD"
Bug still occurs with the RC1 image from here: http://alt.fedoraproject.org/pub/alt/stage/12-RC.1/Fedora-12-ppc-DVD/ Any ideas? Could you try adding text to the yaboot line, think this is a dup of 529392,
anaconda code:
/* if in rescue mode lets copy stage 2 into RAM so we can */
/* free up the CD drive and user can have it avaiable to */
/* aid system recovery. */
if (FL_RESCUE(flags) && !FL_TEXT(flags) &&
totalMemory() > 128000) {
rc = copyFile(stage2loc, "/tmp/install.img");
stage2img = strdup("/tmp/install.img");
stage2inram = 1;
} else {
stage2img = strdup(stage2loc);
stage2inram = 0;
}
Yep, that's it, adding "text" to the boot line fixes it, thanks. The machine has 256MB RAM. This indeed is a dup of 529392 then, closing as such. *** This bug has been marked as a duplicate of bug 529392 *** |