Furious G,
I also could not get any lights to light up, even after installing a 2.6 kernel. I ended up installing Fedora Core 2 (FC2) and following this post (below), which may be specific to FC2 and got it to light up and blink like it is trying to connect. I think it is almost there, but the configuration is not quite right for me to connect. I suspect eth1 is not set up right. Curiously eth1 does not show up in the GUI network setup, yet is visible if I do /sbin/ifconfig. I would like to have wireless just use DHCP rather than setting anything by hand. Anyone have any thoughts on this or know how to set it up to use DHCP? What is different than in the instructions below?
Worked really well once I got all of the pieces in place. I had to search for different bits and pieces of this and thought I'd try to help anyone just wanted to get the card working quickly. I hope this helps!
1. Download "http://prism54.org/~mcgrof/firmware/1.0.4.3.arm" and rename 1.0.4.3.arm to isl3890
wget
http://prism54.org/~mcgrof/firmware/1.0.4.3.arm
mv 1.0.4.3.arm isl3890
2. Create /usr/lib/hotplug/firmware/ directory
su root
[password]
mkdir -p /usr/lib/hotplug/firmware/
3. Move isl3890 to the new directory.
mv isl3890 /usr/lib/hotplug/firmware/
4. Create file /etc/load_wireless with the following - credit to David Cafaro (
http://www.cafaro.net/david/MM20ReviewAndInstall.html)
#!/bin/bash
# Note you may have to change all references to eth1 to eth0 if you do not have another network card already installed
# Dry start to load firmware
echo -n "Bringing up wireless card..."
/sbin/ifconfig eth1 up
# Wait a sec to make sure it's good and loaded
sleep 2
# Now really load it
/sbin/iwconfig eth1 essid [SSID SET IN ROUTER] mode Managed channel 6 key [WEP KEY SET IN ROUTER]
/sbin/ifconfig eth1 192.168.0.2 netmask 255.255.255.0
/sbin/route add default gw 192.168.0.1
echo "done"
5. Make /etc/load_wireless executable:
chmod u+x /etc/load_wireless
6. Test your script:
/etc/load_wireless
7. Put a call to this script in your rc.local if you want to automatically load the wireless card at boot.