摘要: 原文入口-):》》》》》 (O=O=O) 1 /* 2 * hello.c – 本例取自《Linux Kernel Development 3rd》,稍作修改 3 */ 4 //#include <linux/init.h> //早期的Linux内核源码存在这个头文件,2.6已经不存在了 5 #include <linux/module.h> 6 #include <linux/kernel.h> 7 static int hello_init(void) 8 { 9 printk(KERN_ALERT “I bear a charmed life.\n”) 阅读全文
posted @ 2011-10-05 22:19 Matrix_ 阅读(614) 评论(0) 推荐(0) 编辑