Bug 477328
Summary: | [PATCH] Ext2 is not Ext3 | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Lubomir Rintel <lkundrak> | ||||
Component: | anaconda | Assignee: | Anaconda Maintenance Team <anaconda-maint-list> | ||||
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | rawhide | CC: | anaconda-maint-list | ||||
Target Milestone: | --- | Keywords: | EasyFix, Patch | ||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2009-01-05 17:43:28 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: | |||||||
Bug Depends On: | |||||||
Bug Blocks: | 446452 | ||||||
Attachments: |
|
We should probably do better and switch to just doing mount -t auto at this point as we're using real mount(8) as opposed to calling mount(2) ourselves Yes, that certainly makes sense. This will be fixed in the next build of anaconda. Thanks for the bug report. |
Created attachment 327543 [details] Try to mount filesystems as ext3 Preupgrade failed for me, since anaconda couldn't read the kickstart file from my /boot partition. It turned out that it fails an attempt to mount -t ext2 /boot due to unsupported optional features. If I remember correctly, it did not fail all of my repeated attempts, but in the end I couldn't get the F-10 kernel mount my ext3 /boot with -t ext2. I had to work around by removing the journal with tune2fs -o ^has_journal, after which the upgrade completed successfully. Attached patch tries to address the problem.