|
发表于 2002-9-1 10:26:01
|
显示全部楼层
myson网站上的linux2.4驱动里的readme文件
1. Copy the compress file mtd80x-linux-2.4.x.tgz to /tmp directory,
mount -t msdos /dev/fd0 /mnt/floppy
cp /mnt/floppy/linux-2.4.x/mtd80x-linux-2.4.x.tgz /tmp
2. Uncompress the file
cd /tmp
tar -zxvf mtd80x-linux-2.4.x.tgz
3. Make network adapter driver modules
touch *
make clean
make
*Under some distribution, such as SuSe 7.2 and BluePoint 2.0, there is no version.h.
You have to run "make config" or "make menuconfig" at /usr/src/linux to create it.
**If you are using Mandrake 8.0/RedHat 7.3 and you have problems when insmod the dirver, please
remove "-DMODVERSIONS" option from makefile.
**When use the driver under RedHat 7.3, you will see some warning message,
you can ignore it.
***On SMP system, the driver may NOT work well. The bug will be fixed in the future.
4. Insert network adapter driver modules
insmod pciscan.o
insmod mtd80x.o
5. Bind your card to an IP address
ifconfig eth0 {IPADDR} netmask {NETMASK}
6. Now, you should be able to ping local network.
*Every time you reboot the system, you must execute step 4 and step 5
again to bind your card. |
|