LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 699|回复: 2

fc5,安装网卡驱动中遇到问题,求助.

[复制链接]
发表于 2006-5-9 14:02:43 | 显示全部楼层 |阅读模式
我是新手,请高手们帮忙看看,最近在笔记本上装了fc5,安装网卡驱动中遇到问题,信息如下:
[root@nx5k-fc5 rooot]# cd bcm4400-3.0.14
[root@nx5k-fc5 bcm4400-3.0.14]# ll
总计 64
-rw-r--r-- 1 root root  3047 2005-10-20 DISTRIB.TXT
-rw-r--r-- 1 root root 15153 2005-10-20 LICENSE
-rw-r--r-- 1 root root  8075 2005-10-20 README.TXT
-rw-r--r-- 1 root root 12268 2005-10-20 RELEASE.TXT
drwxr-xr-x 2 root root  4096 2005-10-20 src
[root@nx5k-fc5 bcm4400-3.0.14]# cd src
[root@nx5k-fc5 src]# ll
总计 276
-rw-r--r-- 1 root root 38726 2005-10-20 b44.h
-rw-r--r-- 1 root root 64621 2005-10-20 b44lm.c
-rw-r--r-- 1 root root 17498 2005-10-20 b44lm.h
-rw-r--r-- 1 root root  8810 2005-10-20 b44mm.h
-rw-r--r-- 1 root root 10300 2005-10-20 b44proc.c
-rw-r--r-- 1 root root 11645 2005-10-20 b44queue.h
-rw-r--r-- 1 root root 57791 2005-10-20 b44um.c
-rw-r--r-- 1 root root  6050 2005-10-20 bcm4400.4
-rwx------ 1 root root  3397 2005-10-20 Makefile
[root@nx5k-fc5 src]# make
make -C /lib/modules/2.6.15-1.2054_FC5/build SUBDIRS=/rooot/bcm4400-3.0.14/src modules
make[1]: Entering directory `/usr/src/redhat'
make[1]: *** 没有规则可以创建目标“modules”。 停止。
make[1]: Leaving directory `/usr/src/redhat'
make: *** [default] 错误 2




[root@nx5k-fc5 i386]# rpm -qa |grep -i gcc
gcc-gfortran-4.1.0-3
gcc-c++-4.1.0-3
libgcc-4.1.0-3
gcc-4.1.0-3
[root@nx5k-fc5 i386]# rpm -qa |grep -i rpm|more
rpm-libs-4.4.2-15.2
rpm-4.4.2-15.2
rpm-python-4.4.2-15.2
rpm-build-4.4.2-15.2
redhat-rpm-config-8.0.40-1

[root@nx5k-fc5 redhat]# rpm -bb SPECS/bcm4400.spec
error: Legacy syntax is unsupported: copyright
error: line 9: Unknown tag: Copyright: GPL
[root@nx5k-fc5 redhat]# rpmbuild -bb SPECS/bcm4400.spec
error: Legacy syntax is unsupported: copyright
error: line 9: Unknown tag: Copyright: GPL

用tgz格式装,make的时候报错.用rpm装.-bb时报错.请高手指点.附上网卡的驱动安装说明文件
:
                           Installation Notes
                       Broadcom BCM4400 Linux Driver
                              Version 3.0.8
                                7/30/2004

                          Broadcom Corporation
                          16215 Alton Parkway,
                          Irvine, CA 92619-7013

                Copyright (c) 2000-2004 Broadcom Corporation
                           All rights reserved


Table of Contents
=================

  Introduction
  Limitations
  Packaging
  Installing Source RPM Package
  Building Driver From TAR File
  Unloading and Removing Driver
  Module Parameters
  Driver Messages
  Statistics
  

Introduction
============

This file describes the Linux driver for the Broadcom BCM4400
series 10/100 Mbps Ethernet Network Controllers.


Limitations
===========

The current version of the driver has been tested on the latest Red Hat
and United Linux distributions, as well as other similar Linux distributions
for i386 CPU architectures using 2.4.x kernels. The driver has been tested
up to kernel version 2.4.22.

The driver has not been ported to other CPU architectures.


Packaging
=========

The driver is released in two packaging formats: source RPM and compressed tar
formats. The file names for the two packages are bcm4400-<version>.src.rpm and
bcm4400-<version>.tar.gz respectively. Identical source files to build the
driver are included in both packages.


Installing Source RPM Package
=============================

The following are general guidelines for installing the driver. Refer to
DISTRIB.TXT for additional installation notes for various Linux distributions.

1. Install the source RPM package:

   rpm -ivh bcm4400-<version>.src.rpm

2. CD to the RPM path and build the binary driver for your kernel:

   cd /usr/src/{redhat,OpenLinux,turbo,packages,rpm ..}

   rpm -bb SPECS/bcm4400.spec

or

   rpmbuild -bb SPECS/bcm4400.spec (for RPM version 4.x.x)

Note that the RPM path is different for different Linux distributions.

3. Install the newly built package (driver and man page):

   rpm -ivh RPMS/i386/bcm4400-<version>.i386.rpm

The driver will be installed in the following path:

2.2.x kernels:

    /lib/modules/<kernel_version>/net/bcm4400.o

2.4.x kernels:

    /lib/modules/<kernel_version>/kernel/drivers/net/bcm4400.o

4. Load the driver:

   insmod bcm4400

5. To configure network protocol and address, refer to various Linux
documentations.


Building Driver From TAR File
=============================

The following are general guidelines for installing the driver. Refer to
DISTRIB.TXT for additional installation notes for various Linux distributions.

1. Create a directory and extract the files:

   tar xvzf bcm4400-<version>.tar.gz

2. Build the driver bcm4400.o as a loadable module for the running kernel:

   cd src
   make

3. Test the driver by loading it:

   insmod bcm4400.o

4. Install the driver and man page:

   make install

See RPM instructions above for the location of the installed driver.

5. To configure network protocol and address, refer to various Linux
documentations.


Unloading and Removing Driver
=============================

To unload the driver, use ifconfig to bring down all eth# interfaces opened
by the driver, then do the following:

rmmod bcm4400


If the driver was installed using rpm, do the following to remove it:

rpm -e bcm4400


If the driver was installed using make install from the tar file, the driver
bcm4400.o has to be manually deleted from the system. Refer to the section
"Installing Source RPM Package" for the location of the installed driver.


Module Parameters
=================

Optional parameters for the driver can be supplied as command line arguments
to the insmod command. Typically, these parameters are set in the file
/etc/modules.conf (see the man page for modules.conf). These parameters take
the form

    <parameter>=value[,value,...]

where the multiple values for the same parameter are for multiple NICs
installed in the system.

Note that default or other meaningful values will be used when invalid values
are selected. Some combinations of parameter values may conflict and lead to
failures. The driver cannot detect all such conflicting combinations.

All the parameters are listed below.

line_speed

    Selects the line speed of the link. This parameter is used together with
    full_duplex and auto_speed to select the speed and duplexity of the link
    and the setting of autonegotiation.
   
    The valid values are:
   
    0      Autonegotiate for highest speed supported by link partner (default)
    10     10 Mbps
    100    100 Mbps

    If line_speed is set to 10, 100, or 1000, the NIC will autonegotiate for
    the selected speed (and selected duplexity) if auto_speed is set to 1.
    If auto_speed is set to 0, the selected speed and duplexity will be
    set without autonegotiation. Note that 1000 Mbps must be negotiated for
    copper twisted pair links.

auto_speed

    Enables or disables autonegotiation. The valid values are:

    0      Autonegotiation disabled
    1      Autonegotiation enabled (default)

    Note that this parameter is ignored and assumed 1 if line_speed is set
    to 0.
   
full_duplex

    Selects the duplexity of the link. This paramter is used together with
    line_speed to select the speed and duplexity of the link. Note that this
    parameter is ignored if line_speed is 0.
   
    The valid values are:
   
    0      half duplex
    1      full duplex (default)
   
   
rx_flow_control

    Enables or disables receiving flow control (pause) frames. This parameter
    is used together with auto_flow_control. The valid values are:
   
    0      pause receive disabled (default)
    1      pause receive enabled if auto_flow_control is set to 0, or
           pause receive advertised if auto_flow_control is set to 1

tx_flow_control

    Enables or disables transmitting flow control (pause) frames. This parameter
    is used together with auto_flow_control. The valid values are:
   
    0      pause transmit disabled (default)
    1      pause transmit enabled if auto_flow_control is set to 0, or
           pause transmit advertised if auto_flow_control is set to 1

auto_flow_control

    Enables or disables autonegotiation of flow control. This parameter is used
    together with rx_flow_control and tx_flow_control to determine the
    advertised flow control capability. The valid values are:
   
    0      flow control autonegotiation disabled (default)
    1      flow control autonegotiation enabled with capability specified in
           rx_flow_control and tx_flow_control (only valid if line_speed is
           set to 0 or auto_speed is set to 1)

tx_pkt_desc_cnt

    Configures the number of transmit descriptors. Default is 64. The
    valid range is from 1 to 511.

rx_pkt_desc_cnt

    Configures the number of receive descriptors. Default is 64. The
    valid range is from 1 to 511.

enable_wol

    Enables or disables magic packet Wake-On-LAN when the system is shutdown.
    Note that not all systems support Wake-On-LAN. The valid values are:

    0    magic packet Wake-On-LAN disabled (default)
    1    magic packet Wake-On-LAN enabled


Driver Messages
===============

The following are the most common sample messages that may be logged in the file
/var/log/messages. Use dmesg -n <level> to control the level at which messages
will appear on the console. Most systems are set to level 6 by default.

Broadcom 4401 Ethernet Driver bcm4400 ver. 1.0.0 (08/21/02)

    Driver signon


eth#: Broadcom BCM4401 100Base-T found at mem f7ffc000, IRQ 18, node addr
0010180407b2

    NIC detected


bcm4400: eth# NIC Link is Up, 100 Mbps full duplex

    Link up and speed indication


bcm4400: eth# NIC Link is Down

    Link down indication


Statistics
==========

Detailed statistics and configuration information can be viewed in the file
/proc/net/nicinfo/eth#.info.
 楼主| 发表于 2006-5-15 15:36:54 | 显示全部楼层
没人理我...高手...们..救人如救火啊...
回复 支持 反对

使用道具 举报

发表于 2006-5-15 15:52:54 | 显示全部楼层
Looks like the driver is pretty old, and only supports 2.4.x kernel. Try to get a newer version that supports 2.6 kernels.

Are you sure it is not supported by the kernel already?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表