I have just got the smc2635w card to work under Mandrake 9.1 and I am not using the driver from smc. I got the driver from
www.admtek.com. The file is called ADM8211_src_105.tar.gz
DO NOT get the other ADM8211_Linux_Driver_103.tar.gz even it sounds similar... I wasted the whole weekend wondering why it doesn't work... simply because I got the wrong file =(
After install
1. Make sure you installed the Kernel source
2. unzip it ... of course...
3. Open Makefile search for the prase /usr/linux2.xx (or something like that) and remove the 2.xx so it says /usr/linux
if you don't you'll get a compile error. There should only be one replacement in the whole Makefile. Just in case, do a compile without change and you'll see the error line to pin point where in the Makefile the change is needed.
4. Make it and it should be creating a file called 8211.o and it is the file you'll need to insmod later on.
5. Finally create the script as follows (I got this from some other post. I have to thank the guy who did it. I didn't create this so
I don't have any credit at all...)
#these first three lines get the green light on
modprobe pcmcia_core
modprobe yenta_socket
modprobe ds
#this line gets the green light blinking
#you have to successfully compile the driver from
www.admtek.com
#for this to be successful
insmod /usr/local/bin/ADM8211/8211.o
#need a brief pause before trying to configure the card
sleep 3
#these are universal card settings by default
iwconfig eth1 channel 6 rate 11M
#thest are my personal settings for a DSL connection, but yours
#should be similar. I use a static IP. Never could get DHCP #working
iwconfig eth1 essid [insert your essid]
iwconfig eth1 key [insert your key]
sleep 1
6. If you're running fixed IP add
ifconfig eth1 [insert your IP]
route add default gw [insert your default gw
to the end of the script
7. If you're running dhcp like me don't do step 6 and just
run the script and afterward, run dhclient instead.
I got the card working after step7 and I was able to ping yahoo,
ssh to a client's machine... but for some reason Netscape won't run. However, I can confirm that the connection is working fine.
You should notice the green light blinking. If not you know it might not be working.
Since Mandrake is basically RedHat.. this should work...