Linux系统移植实验---网卡驱动的移植

实验五  网卡驱动的移植

【实验目的】

通过上面的实验我们能够获得一个内核,但是这个内核只是一个最基本的配置,很多的功能并没有包含

网卡是嵌入式产品最常用的设备,这里我们需要完成网卡驱动的移植FS4412使用的是DM9000网卡,我们通过这个实验能够了解如何在内核中添加网卡驱动及网络功能的基本配置。

说明:在本系统移植课程实验中命令行提示符 $”表示是在主机上执行,“#”表示在目标板执行

【实验环境】

• 主机:ubuntu 12.04发行版

• 目标机:FS4412平台

• 交叉编译工具:arm-none-linux-gnueabi-gcc

【实验步骤】

• 设备树文件修改:

$ vim  arch/arm/boot/dts/exynos4412-fs4412.dts

添加如下内容:

srom-cs1@5000000 {

compatible = "simple-bus";

#address-cells = <1>;

#size-cells = <1>;

reg = <0x5000000 0x1000000>;

ranges;

 

ethernet@5000000 {

compatible = "davicom,dm9000";

reg = <0x5000000 0x2 0x5000004 0x2>;

interrupt-parent = <&gpx0>;

interrupts = <6 4>;

davicom,no-eeprom;

mac-address = [00 0a 2d a6 55 a2];

};

};

• 修改文件driver/clk/clk.c

修改

static bool clk_ignore_unused;

static bool clk_ignore_unused = true;

 

• 配置内核:

make menuconfig

[*] Networking support  --->

Networking options  --->

<*> Packet socket

<*> Unix domain sockets

[*] TCP/IP networking

[*]   IP: kernel level autoconfiguration

Device Drivers  --->

[*] Network device support  --->

[*]   Ethernet driver support (NEW)  --->

<*>   DM9000 support

File systems  --->

[*] Network File Systems (NEW)  --->

<*>   NFS client support

[*]     NFS client support for NFS version 3

[*]       NFS client support for the NFSv3 ACL protocol extension

[*]   Root file system on NFS

 

• 编译内核和设备树

$ make uImage

$ make dtbs

• 测试:

拷贝内核和设备树文件到/tftpboot目录下

$ cp  arm/arm/boot/uImage  /tftpboot

$ cp  arch/arm/boot/dts/exynos4412-fs4412.dtb  /tftpboot/

 启动开发板,修改内核启动参数,通过NFS方式挂载根文件系统

你可能感兴趣的:(Linux系统移植,网卡驱动移植)