Bug 3487
| Summary: | rc.sysinit script bug | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | pkinz |
| Component: | initscripts | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED NEXTRELEASE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 6.0 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-06-17 21:30:42 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: | |||
Actually, st is probably compiled into the kernel. ;) The initscripts /lib/modules determination logic has been fixed in the latest version of the initscripts, available in Raw Hide. What's "Raw Hide"? How do I get to it? Raw Hide is the Red Hat rolling release program. It's a weekly snapshot of our development tree. You can get stuff from it at ftp://rawhide.redhat.com/ ; the files you'd be looking for would be in the i386/RedHat/RPMS directory. |
I was looking at why Linux says "can't find module st" on the way up. Turns out that the st.o (scsi tape) module is missing from /lib/modules/2.2.5-15/scsi area so I copied it there. Also, the /lib/modules/default link is not there because of the bug in rc.sysinit so if you look for the lines starting with: mtag= and mver= It's trying to set up the 'default' link. But those 2 lines need back-quotes ( ` ) after the equal sign and at the end of the line to turn the resulting line into a string. When I added that, I got the 'default' link and the error on bringup didn't happen. Funny think is that it still ran the scsi tape OK tho.