当前位置: 技术问答>linux和unix
如何编译.c的驱动程序(高分求救!!)
来源: 互联网 发布时间:2015-05-24
本文导语: 我发一下驱动盘里的install内容和问题: 内容如下: Realtek CardBus Ethernet Card Installation on Linux 1. Compile the source code : ->Copy the source code rtl8139.c (ver 1.08 above) to a directory and execute "gcc -DCARDBUS -DMODULE -D_...
我发一下驱动盘里的install内容和问题:
内容如下:
Realtek CardBus Ethernet Card Installation on Linux
1. Compile the source code :
->Copy the source code rtl8139.c (ver 1.08 above) to a directory
and execute "gcc -DCARDBUS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes
-O6 -c rtl8139.c -o realtek_cb.o -I/usr/src/linux/pcmcia-cs-3.0.9/include/"
The directory "pcmcia-cs-3.0.9" stands for the card service version you
use. Please change it to the version on your system in order to include
proper .h file. The final file is realtek_cb.o
2. Copy driver :
->Copy the file "realtek_cb.o" to "/lib/modules/2.2.14-5.0/pcmcia"
3. Edit config:
->Add 5 lines to the file "/etc/pcmcia/config"
#
# Device driver definitions
#
device "realtek_cb" (==>Add 1/5)
class "network" module "cb_enabler", "realtek_cb" (==>Add 2/5)
:
:
#
# CardBus Cards
#
card "Realtek CardBus Ethernet Card" (==>Add 3/5)
manfid 0x0000, 0x024C (==>Add 4/5)
bind "realtek_cb" (==>Add 5/5)
The values 0x0000, 0x024C are JEDEC ID and can be read by typing
"cardctl ident" on console with one card on socket.
4. Edit linuxconf
->Type "linuxconf" and choose "Config"-->"Networking"-->"Client tasks"-->
"Basic host information". Select an adapter, enable it, and type "realtek_cb"
on "Kernel module" and "eth0" (or eth1, eth2) on "Net device". Click on
"Accept" button and "Act/change" button.
5. Restart the computer.
6. More information about kernel compile: http://metalab.unc.edu/mdw/HOWTO/Kernel-HOWTO.html
More information about install: man pcmcia
现在有几个问题:
1:我没有找到gcc,怎么安装它
2:"/etc/pcmcia/"下没有config,是不是要新建个?
希望能给我一个详细的编译过程,求大家了
内容如下:
Realtek CardBus Ethernet Card Installation on Linux
1. Compile the source code :
->Copy the source code rtl8139.c (ver 1.08 above) to a directory
and execute "gcc -DCARDBUS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes
-O6 -c rtl8139.c -o realtek_cb.o -I/usr/src/linux/pcmcia-cs-3.0.9/include/"
The directory "pcmcia-cs-3.0.9" stands for the card service version you
use. Please change it to the version on your system in order to include
proper .h file. The final file is realtek_cb.o
2. Copy driver :
->Copy the file "realtek_cb.o" to "/lib/modules/2.2.14-5.0/pcmcia"
3. Edit config:
->Add 5 lines to the file "/etc/pcmcia/config"
#
# Device driver definitions
#
device "realtek_cb" (==>Add 1/5)
class "network" module "cb_enabler", "realtek_cb" (==>Add 2/5)
:
:
#
# CardBus Cards
#
card "Realtek CardBus Ethernet Card" (==>Add 3/5)
manfid 0x0000, 0x024C (==>Add 4/5)
bind "realtek_cb" (==>Add 5/5)
The values 0x0000, 0x024C are JEDEC ID and can be read by typing
"cardctl ident" on console with one card on socket.
4. Edit linuxconf
->Type "linuxconf" and choose "Config"-->"Networking"-->"Client tasks"-->
"Basic host information". Select an adapter, enable it, and type "realtek_cb"
on "Kernel module" and "eth0" (or eth1, eth2) on "Net device". Click on
"Accept" button and "Act/change" button.
5. Restart the computer.
6. More information about kernel compile: http://metalab.unc.edu/mdw/HOWTO/Kernel-HOWTO.html
More information about install: man pcmcia
现在有几个问题:
1:我没有找到gcc,怎么安装它
2:"/etc/pcmcia/"下没有config,是不是要新建个?
希望能给我一个详细的编译过程,求大家了
|
gcc -DCARDBUS -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes
-O6 -c rtl8139.c -o realtek_cb.o -I/usr/src/linux/pcmcia-cs-3.0.9/include/
用上面的语句编译
gcc默认是安装了的,如果没有的话自己在软件包添加删除中安装上
-O6 -c rtl8139.c -o realtek_cb.o -I/usr/src/linux/pcmcia-cs-3.0.9/include/
用上面的语句编译
gcc默认是安装了的,如果没有的话自己在软件包添加删除中安装上