Thank you for your reply meanie.
I have tried this previously, and I always get "unsupported card" in the cards app on the taskbar, and no lights come on, on my card.
I was hoping this would work this time, but didn't.
I commented every one of the matching manfids in /etc/pcmcia/config except this one.
card "AmbiCom WL11000C 802.11b CF-Card"
version "AmbiComi", "WL11000C 802.11b CF-Card", "2.2"
manfid 0xd601, 0x0002
bind "hostap_cs"
Later I discovered 3 spelling errors and tried this setting, with no change in results.
card "AmbiCom WL1100C 802.11b CF-Card"
version "AmbiCom", "WL1100C 802.11b CF-Card", "2.2"
manfid 0xd601, 0x0002
bind "hostap_cs"
(extra zero in WL1100C and Ambicom, spelled Ambicomi)
Here's lsmod
root-:) lsmod
Module Size Used by Tainted: P
mousedev 4544 1
rfcomm 33556 0 (autoclean)
l2cap 16384 2 (autoclean) [rfcomm]
bluez 33188 1 (autoclean) [rfcomm l2cap]
pxa27x_bi 24828 0 (unused)
net_fd 25192 0 (unused)
usbdcore 35464 0 [pxa27x_bi net_fd]
usbdmonitor 5456 0
usb-monitor 6440 0
sharp_mmcsd_m 41032 2
bvdd 11104 0 (unused)
Again, thank you for your help, there must be something else preventing hostap_cs from loading.
EDIT
I thought I got it. (Since this isn't working very well, I'll probably return to my backed up hermes.conf file)
(I thought I had it working, it connected and got my IP, I checked email, got email, then surfed. After clicking a second link, my connection quit and the card started blinking)
At least I now have hostap loaded in lsmod, where before I didn't. My Ambicom card is showing on the taskbar, and only blinks once when inserted, (like in Cacko)
root-:) lsmod
Module Size Used by Tainted: P
hostap_crypt_tkip 9136 0 (autoclean)
hostap_crypt_wep 3584 0 (autoclean)
hostap 97792 0 [hostap_crypt_tkip hostap_crypt_wep]
mousedev 4544 1
rfcomm 33556 0 (autoclean)
l2cap 16384 2 (autoclean) [rfcomm]
bluez 33188 1 (autoclean) [rfcomm l2cap]
pxa27x_bi 24828 0 (unused)
net_fd 25192 0 (unused)
usbdcore 35464 0 [pxa27x_bi net_fd]
usbdmonitor 5456 0
usb-monitor 6440 0
sharp_mmcsd_m 41032 2
bvdd 11104 0 (unused)
Using this thread, substituting my Ambicom entry for the below entry.
https://www.oesf.org/forum/index.php?showto...amp;#entry44759 (note forum without the s)
EDIT2
I couldn't get this post to quote, but I thought it was the solution for my problem with hostap until I found out that my connection craps out after some time while online.
---------------------------------
Quoted from member "rgrep" Oct 4 2004, 02:22 AM
"I've fixed the problem now by switching drivers from orinoco to hostap. I have a Linksys WCF12 which is Prism 2 (or Prism 3?) and with the default settings in pdaXrom it uses these modules:"
# lsmod
Module Size Used by Tainted: P
orinoco_cs 4472 1
orinoco 35028 0 [orinoco_cs]
hermes 4592 0 [orinoco_cs orinoco]
...
I'm not sure why the pdaXrom developers decided to only enable the orinoco driver (comments guys?) but it appears that's the only one it will ever use. For Prism based cards there's no need to use orinoco, especially since hostap is apparently better (and I'm hoping it will let me set my Zaurus up as an Access Point). The file you need to edit to switch drivers is /etc/pcmcia/hermes.conf. I added these lines near the top of the file:
device "hostap_cs"
class "hermes"
module "hostap", "hostap_cs"
Then find the definition for your card (further down in that file) and change the "orinoco_cs" reference to "hostap_cs". The definition for my card nows looks like this:
card "Linksys CompactFlash Wireless Card"
version "Linksys", "Wireless CompactFlash Card"
bind "hostap_cs"
(If you're not sure which entry is for your card, use 'cardctl ident' and search in /etc/pcmcia/hermes.conf for the "product info" it reports.
After editing /etc/pcmcia/hermes.conf, eject your card and restart the PCMCIA services:
cardctl eject 0
/etc/rc.d/init.d/pcmcia restart
You can test if it's worked by running lsmod again:
# lsmod
Module Size Used by Tainted: P
hostap_cs 45896 1
hostap 85568 0 [hostap_cs]
...