Linksys WPC11

Longman, Bill yellowdog-general@lists.terrasoftsolutions.com
Thu Nov 20 13:29:02 2003


> What you are saying makes sense.  There is an entry for the 
> card in /etc/pcmcia/config.  I can tell by the output from 
> lsmod orinoco, orinoco_cs, and hermes modules do get loaded.  
> It looks like one of them doesn't work, though.
> 
> There is a clue in /var/log/messages.  It says:
> Nov 20 11:40:53 galvani cardmgr[2043]: socket 1: Instant 
> Wireless Network PC Card
> Nov 20 11:40:53 galvani cardmgr[2043]: executing: 'modprobe hermes'
> Nov 20 11:40:53 galvani cardmgr[2043]: executing: 'modprobe orinoco'
> Nov 20 11:40:53 galvani cardmgr[2043]: executing: 'modprobe 
> orinoco_cs'
> Nov 20 11:40:53 galvani kernel: GetNextTuple().  No matching 
> CIS configuration, maybe you need the ignore_cis_vcc=1 parameter.
> Nov 20 11:40:53 galvani kernel: orinoco_cs: GetFirstTuple: No 
> more items
> Nov 20 11:40:54 galvani cardmgr[2043]: get dev info on socket 
> 1 failed: Resource temporarily unavailable
> Nov 20 11:40:54 galvani cardmgr[2043]: exiting
> 
> Does this mean I should try rebuilding orinoco_cs (and or 
> some other modules?) with a compile-time ignore_cis_vcc=1 or 
> is that an option I should specify in a configuration file somewhere?

That's just an option you can pass to modprobe. See the man page. You can
get a list of a module's parameters with "modinfo".

modinfo orinoco_cs

returns a block with three parm: lines (on my x86 box), the last one is
ignore_cis_vcc and it takes an integer argument.

modprobe orinoco_cs ignore_cis_vcc=1

might get it to work, then.