dmfe.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.   dmfe.c: Version 1.28        01/18/2000
  2.         A Davicom DM9102(A)/DM9132/DM9801 fast ethernet driver for Linux. 
  3.         Copyright (C) 1997  Sten Wang
  4.         This program is free software; you can redistribute it and/or
  5.         modify it under the terms of the GNU General Public License
  6.         as published by the Free Software Foundation; either version 2
  7.         of the License, or (at your option) any later version.
  8.         This program is distributed in the hope that it will be useful,
  9.         but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.         GNU General Public License for more details.
  12.   A. Compiler command:
  13.      A-1: For normal single or multiple processor kernel
  14.           "gcc -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall 
  15.             -Wstrict-prototypes -O6 -c dmfe.c"
  16.      A-2: For single or multiple processor with kernel module version function
  17.           "gcc -DMODULE -DMODVERSIONS -D__KERNEL__ -I/usr/src/linux/net/inet 
  18.             -Wall -Wstrict-prototypes -O6 -c dmfe.c"
  19.   B. The following steps teach you how to activate a DM9102 board:
  20.         1. Used the upper compiler command to compile dmfe.c
  21.         2. Insert dmfe module into kernel
  22.            "insmod dmfe"        ;;Auto Detection Mode (Suggest)
  23.            "insmod dmfe mode=0" ;;Force 10M Half Duplex
  24.            "insmod dmfe mode=1" ;;Force 100M Half Duplex
  25.            "insmod dmfe mode=4" ;;Force 10M Full Duplex
  26.            "insmod dmfe mode=5" ;;Force 100M Full Duplex
  27.         3. Config a dm9102 network interface
  28.            "ifconfig eth0 172.22.3.18"
  29.                           ^^^^^^^^^^^ Your IP address
  30.         4. Activate the IP routing table. For some distributions, it is not
  31.            necessary. You can type "route" to check.
  32.            "route add default eth0"
  33.         5. Well done. Your DM9102 adapter is now activated.
  34.    C. Object files description:
  35.         1. dmfe_rh61.o:        For Redhat 6.1
  36.         If you can make sure your kernel version, you can rename
  37.         to dmfe.o and directly use it without re-compiling.
  38.   Author: Sten Wang, 886-3-5798797-8517, E-mail: sten_wang@davicom.com.tw