Bug 109503
| Summary: | Can't get internet access through Prism2-based wireless card following upgrade from RH9 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Need Real Name <orkslaya> |
| Component: | pcmcia-cs | Assignee: | Dave Jones <davej> |
| Status: | CLOSED WONTFIX | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 1 | CC: | alexeskin, pfrields |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i686 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2004-11-27 05:40:33 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: | |||
|
Description
Need Real Name
2003-11-08 19:55:10 UTC
I tracked down what may be the same bug. In my case,
typing /etc/rc.d/init.d/pcmcia restart resulted in
failed attempts to load pcmcia_core.o yenta_socket.o and ds.o
The cause is that the prism2 driver (linux-wlan-ng-0.2.1-pre13)
created the file /lib/modules/2.4.22-1.2115.nptl/pcmcia
instead of putting all the stuff into
/lib/modules/2.4.22-1.2115.nptl/kernel/drivers/pcmcia
This confuses the /etc/rc.d/init.d/pcmcia script into thinking
that I have the old "out-of-kernel" pcmcia instead of the "in-kernel"
pcmcia. In other words, it defines $PC instead of $KD. Then
it tries to load modules with the .o extension, where instead it
should load them without the .o.
The following patch against /etc/rc.d/init.d/pcmcia fixes
it for me, even though it is probably not the right solution:
--- pcmcia 2003-11-16 13:55:31.000000000 -0600
+++ pcmcia.orig 2003-11-16 13:54:41.000000000 -0600
@@ -104,9 +104,9 @@
KD=/lib/modules/`uname -r`/kernel/drivers/pcmcia
if [ -d $PC ] ; then
echo -n " modules"
- /sbin/modprobe pcmcia_core $CORE_OPTS
- /sbin/modprobe $PCIC $PCIC_OPTS
- /sbin/modprobe ds
+ /sbin/modprobe pcmcia_core.o $CORE_OPTS
+ /sbin/modprobe $PCIC.o $PCIC_OPTS
+ /sbin/modprobe ds.o
elif [ -d $KD ] ; then
/sbin/modprobe pcmcia_core
/sbin/modprobe $PCIC
|