Quote |
Stage 2 of the install: Wireless Networking Ok now that the base system is on, time to get some features working. First up is that wireless card. Though the drivers are installed you need to go grab the firmware off of this site: http://prism54.org Go to the Firmware section and download the 1.0.4.3.arm file. Rename the file isl3890 and place it in the /usr/lib/hotplug/firmware directory. After that you can manually startup the network card using ifconfig and iwconfig. I haven't managed to get Fedora's ifcfg-eth1 scripts to setup and activate the network card correctly. Instead I wrote the following script that sets everything up and activates the wireless card for my home network: #!/bin/bash # Dry start to load firmware /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 MYNET Managed channel 6 key VERYLONGKEYCODE /sbin/ifconfig eth1 192.168.2.36 netmask 255.255.255.0 /sbin/route add default gw 192.168.2.1 |