阅读:1577回复:3
驱动开发#include<linux/module.h> // /usr/scr/linux/include #if defined(CONFIG_SMP) #define __SMP__ #endif #if defined(CONFIG_MODVERSIONS) #define MODVERSIONS #include <linux/modversions.h> #endif #include <linux/kernel.h> int init_module(void) { printk(KERN_DEBUG "hello, kernel ! \n"); return 0; } void cleanup_module(void) { printk(KERN_DEBUG "Good-bye, kernel !\n"); } // gcc -D__KERNEL__ -I/usr/src/linux-2.6.10/include -DMODULE -Wall -O2 -c hello.c -o hello.o 为什么编译通不过啊 ???? 请问, |
|
沙发#
发布于:2005-02-19 19:23
2.6内核啊!
http://www.oreilly.com/catalog/linuxdrive3/index.html ldd3出来了。 源代码: http://www.ar.linux.it/pub/ldd3/ldd3-samples-1.0.0.tar.gz 上面有 |
|
|
板凳#
发布于:2005-02-19 20:04
楼上的兄弟, 能留下你的 QQ 吗, 或者 MSN .
|
|
地板#
发布于:2005-02-19 20:10
我的系统是 fedora 3.0 , 内核源文件是下载的 2.6.10 版本的, 还是不懂啊 |
|