- 论坛徽章:
- 0
|
本帖最后由 fslwx_2008 于 2014-05-24 14:42 编辑
在Broadcom网站(http://www.broadcom.com/support/ethernet_nic/4401.php) 找到linux i368驱动,刚好和本本一样的架构,但是解压方式为ZIP的,解压后Readme内容如下:
Installing Source RPM Package
=============================
The following are general guidelines for installing the driver.
1. Install the source RPM package:
rpm -ivh b44-<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/b44.spec
or
rpmbuild -bb SPECS/b44.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/<arch>/b44-<version>.<arch>.rpm
<arch> is the architecture of the machine, e.g. i386:
rpm -ivh RPMS/i386/b44-<version>.i386.rpm
Note that the --force option may be needed on some Linux distributions
if conflicts are reported.
The driver will be installed in the following path:
2.4.x kernels:
/lib/modules/<kernel_version>/kernel/drivers/net/b44.o
2.6.x kernels:
/lib/modules/<kernel_version>/kernel/drivers/net/b44.ko
4. Load the driver:
insmod b44.o
or
insmod b44.ko (on 2.6.x kernels)
or
modprobe b44
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.
1. Create a directory and extract the files:
tar xvzf b44-<version>.tar.gz
2. Build the driver b44.o (or b44.ko) as a loadable module for the
running kernel:
cd src
make
3. Test the driver by loading it:
insmod b44.o
or
insmod b44.ko (on 2.6.x kernels)
or
insmod b44
4. Install the driver:
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.
看到RPM时心凉了一半,好在下面还有TAR的方面接着整,不知道方法对不对! 唉大牛们指点一下!
今天有点时间接着以上,但是出现问题了,望路过的高人指点一下;先谢了!
1. Create a directory and extract the files:
tar xvzf b44-<version>.tar.gz
2. Build the driver b44.o (or b44.ko) as a loadable module for the
running kernel:
cd src
make
3. Test the driver by loading it:
insmod b44.o
or
insmod b44.ko (on 2.6.x kernels)
or
insmod b44
4. Install the driver:
make install
完成解压后,到第二步就不知道怎么处理了。
解压后的文件
root@123-MM061:/home/123# cd b44-1.00g/
root@123-MM061:/home/123/b44-1.00g# ls
b44.4 b44.c b44.h LICENSE Makefile
因为不知道cd src的src指什么,如果直接Make 提示如下
oot@vince-MM061:/home/123/b44-1.00g# make
gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -I/lib/modules/3.2.0-23-generic-pae/build/include -DOLD_NETIF -DOLD_DMA -DNO_DMA_MAPPING_ERROR -O2 -c -o b44.o b44.c
b44.c:10:26: 致命错误:
linux/config.h:没有那个文件或目录编译中断。问题是不是出在这儿呀?
make: *** [b44.o] 错误 1
cd src是cd /usr/src还是cd /usr/local/src后 make 结果如下
make:****没有指明目标并且找不到makefile.停止,看来要 vi makefile看看
|
|