11.把helloworld字符驱动模块编译进内核

首先是hello.c 文件:

11.把helloworld字符驱动模块编译进内核_第1张图片

Hello.c:

11.把helloworld字符驱动模块编译进内核_第2张图片

接着是修改driver/char/Kconfig:

添加:

 

修改字符设备驱动里的Makefile:

打开Makefile:

obj-$(CONFIG_HELLO_WORLD) += hello.o

11.把helloworld字符驱动模块编译进内核_第3张图片

 

 

 

进入配置界面:

11.把helloworld字符驱动模块编译进内核_第4张图片

选择Device driver:进入:

11.把helloworld字符驱动模块编译进内核_第5张图片

11.把helloworld字符驱动模块编译进内核_第6张图片

选择Character devices:

11.把helloworld字符驱动模块编译进内核_第7张图片

进入:

11.把helloworld字符驱动模块编译进内核_第8张图片

找到我们的helloworld,并选中:

11.把helloworld字符驱动模块编译进内核_第9张图片

一直保存退出:

编译:

编译完成:

11.把helloworld字符驱动模块编译进内核_第10张图片

11.把helloworld字符驱动模块编译进内核_第11张图片

Tftp烧写:

11.把helloworld字符驱动模块编译进内核_第12张图片

启动看到我们驱动代码打印出来的:

11.把helloworld字符驱动模块编译进内核_第13张图片

说明我们的内核模块成功加入内核了。启动成功。

你可能感兴趣的:(11.把helloworld字符驱动模块编译进内核)