Chinaunix首页 | 论坛 | 博客
  • 博客访问: 403938
  • 博文数量: 58
  • 博客积分: 1775
  • 博客等级: 上尉
  • 技术积分: 755
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-12 15:03
文章分类

全部博文(58)

文章存档

2012年(5)

2011年(43)

2010年(10)

分类:

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

阅读(2301) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:一个小http server应用编程

给主人留下些什么吧!~~