发布时间:2014-02-16 17:03:29
http://www.myexception.cn/other/692874.html关于内核中 EXPORT_SYMBOL 导出变量的实例在内核中,可以通过这两个宏将变量导出,供其他模块使用:EXPORT_SYMBOL();EXPORT_SYMBOL_GPL(); 实例:hello.c:/***********************************************************************@@ 函数.........【阅读全文】
发布时间:2014-02-16 16:57:38
http://cjhust.blog.163.com/blog/static/175827157201011328596671、代码—helloworld.c#include <linux/init.h>#include <linux/kernel.h> #include <linux/module.h>static int hello_init(void){ printk("Hello! This is the helloworld module!\n");  .........【阅读全文】
发布时间:2014-02-16 16:35:20
在ubuntu12.04上完成内核编译1.apt-cache search --names-only Linux-source2.apt-get install Linux-source-3.2.03.make config4.make5.make modules6.make modules_install7.make install8.reboot......【阅读全文】