标签:hello world 驱动 arm
1、 在/home/sxy/目录下新建hello_1文件夹,在此文件夹下编写hello.c和Makefile文件(假设已经编写好了),make生成模块文件;
PS:hello.ko就是用于需要使用的驱动模块。
hello.c代码:
Makefile代码:
注意Makefile文件中的黑色填充部分:
①选择交叉编译器;
②正确选择内核树所在目录(此内核即为开发板使用的内核)。
2、 打开串口终端,启动开发板,将/home/目录挂载到开发板/tmp/hello/目录下;
PS:insmod实现模块加载,rmmod实现模块卸载。
2014.05.29
“hello world”驱动实现过程(ARM板上),布布扣,bubuko.com
标签:hello world 驱动 arm
原文地址:http://blog.csdn.net/suaoyang/article/details/27553873