分类:
2010-12-20 20:41:52
这里多谢阿淦的指点
1.新建Makefile
obj-m := hello.o
2.新建hello.c
#include
#include
static int __init hello_init(void)
{
printk("Hello Module init success!\n");
return 0;
}
static void __exit hello_exit(void)
{
printk("Hello Module exit success!\n");
}
module_init(hello_init);
module_exit(hello_exit);
3.编译
make -C /lib/modules/2.6.35.9-64.fc14.i686/build/ M=$(pwd) module