atmelwlandriver v3.4.1.1 for Atmel AT765XXx-based wireless devices for Puppy Linux with kernel 2.4.29 - versions 1.0.4 and 1.0.5 from http://atmelwlandriver.sourceforge.net/news.html compiled by tempestuous, December 2005. Tested successfully with Belkin F5D6020 ver2. No guarantees. No support. Modules included in this driver package - PCMCIA pcmf502r 502rfmd pcmf502rd 502rfmd revision d pcmf502re 502rfmd revision e pcmf502r3 502 3COM pcmf504 504 pcmf504_2958 504+2958 pcmf504A_2958 504A+2958 USB usbvnetr 503A RFMD usbvnet5 RFMD 505 usbvnet5_2958 RFMD 505+2958 usbvnet5A RFMD 505A usbvnet5AMX RFMD 505A Maxim miniPCI pcifvnet Some Atmel-based USB adaptors are supported by another driver package, BerliOS at76503. See http://at76c503a.berlios.de/devices.html for device compatibility, determined in some cases by manfid number. WPA client encryption support is available with the addition of the wpa_supplicant package, as a separate download. INSTRUCTIONS ## uncompress the driver package from the uppermost directory cd / tar -zxvf atmelwlan-3.4.1.1.tar.gz ## map the new modules depmod ## You will see "depmod: *** Unresolved symbols in ..." error messages for the USB modules. ## Don't worry, this seems to be a known issue with these drivers, but they work anyway. ## If the warning messages annoy you, "depmod -q" can be used. ## load the driver modprobe pcmf502r # or one of the other versions ## if no error messages, this should create a network interface, atml0 ## can check this by running ifconfig -a ## now set up the wireless network iwconfig atml0 essid MY_ESSID key 1234567890 mode Managed ## for automatic IP dhcpcd -t 20 -h puppypc -d atml0 ## or for static IP ## modify /etc/resolv.conf to include your nameservers #ifconfig atml0 192.168.0.xx broadcast 192.168.0.255 netmask 255.255.255.0 #route add default gw 192.168.0.1 atml0 # or whatever your router's IP is MAKING IT PERMANENT If this driver works with your hardware, you will want to have it available every time you boot up. Save the driver tarball to your /root directory, which is persistent if you use a pupfile. Add the uncompress and depmod commands to /root/.etc/rc.d/rc.local cd / tar -zxvf /root/atmelwlan-3.4.1.1.tar.gz depmod This will install the driver every time you boot up, ready to load and configure as explained above. A script for this purpose, "atmelwlan-connect" is available. Just modify the script to include your wireless settings.