Bug 408391
| Summary: | util-linux-ng's setarch is missing alpha subarchs | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Oliver Falk <oliver> |
| Component: | util-linux-ng | Assignee: | Karel Zak <kzak> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | high | Docs Contact: | |
| Priority: | medium | ||
| Version: | 8 | Keywords: | EasyFix, Patch |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | alpha | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | 2.13-3.1.fc8 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2007-12-20 20:03:32 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: | |||
Applied to upstream branch 2.14. Thanks. (I assume you agree with "Signed-off-by:".) Sure. Thx a lot! util-linux-ng-2.13-3.1.fc8 has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update util-linux-ng' util-linux-ng-2.13-3.1.fc8 has been pushed to the Fedora 8 stable repository. If problems still persist, please make note of it in this bug report. |
Please apply the following patch - upstream or at least rawhide/devel + F-8 branch: diff -up util-linux-ng-2.13/sys-utils/setarch.c.more_alpha util-linux-ng-2.13/sys-utils/setarch.c --- util-linux-ng-2.13/sys-utils/setarch.c.more_alpha 2007-12-03 09:25:31.000000000 +0100 +++ util-linux-ng-2.13/sys-utils/setarch.c 2007-12-03 09:25:33.000000000 +0100 @@ -143,6 +143,10 @@ int set_arch(const char *pers, unsigned #endif #if defined(__alpha__) {PER_LINUX, "alpha", "alpha"}, + {PER_LINUX, "alphaev5", "alpha"}, + {PER_LINUX, "alphaev56", "alpha"}, + {PER_LINUX, "alphaev6", "alpha"}, + {PER_LINUX, "alphaev67", "alpha"}, #endif {-1, NULL, NULL} }; This is just a WorksForMe patch. You might want to change...