当前位置: 技术问答>linux和unix
关于嵌入式linux编译最简单内核模块不能通过的问题!
来源: 互联网 发布时间:2016-05-06
本文导语: #define MODULE #include int int_module(void){ printk("hello world!n"); return 0; } void cleanup_module(void){ printk("goodbye!n"); } 这是我写的一个内核模块,可是怎么编译它,听说交叉编译器路径要指定,还有就是linux2.6.13内核源码路...
#define MODULE
#include
int int_module(void){
printk("hello world!n");
return 0;
}
void cleanup_module(void){
printk("goodbye!n");
}
这是我写的一个内核模块,可是怎么编译它,听说交叉编译器路径要指定,还有就是linux2.6.13内核源码路径要指定,是吗?????那位说得详细点!谢谢!!!
#include
int int_module(void){
printk("hello world!n");
return 0;
}
void cleanup_module(void){
printk("goodbye!n");
}
这是我写的一个内核模块,可是怎么编译它,听说交叉编译器路径要指定,还有就是linux2.6.13内核源码路径要指定,是吗?????那位说得详细点!谢谢!!!
|
楼主帖下错误信息,可以给你个Makefile参考..
##Makefile ---
## Author: hefuhua@163.com
## Version: $Id: Makefile,v 0.0 2007/01/26 02:02:51 leno Exp $
## Keywords:
## X-URL:
ifneq ($(KERNELRELEASE),)
obj-m := -DEXPORT_SYMTAB
obj-m := hello.o
else
KERNELDIR ?= /home/leno/filesys/lib/modules/2.6.10_mvl401_R11ER30_v1.0/build
#改成你的内核源码所在的地方
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
##Makefile ---
## Author: hefuhua@163.com
## Version: $Id: Makefile,v 0.0 2007/01/26 02:02:51 leno Exp $
## Keywords:
## X-URL:
ifneq ($(KERNELRELEASE),)
obj-m := -DEXPORT_SYMTAB
obj-m := hello.o
else
KERNELDIR ?= /home/leno/filesys/lib/modules/2.6.10_mvl401_R11ER30_v1.0/build
#改成你的内核源码所在的地方
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
|
#include
#include
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "Hello, worldn");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye, cruel worldn");
}
module_init(hello_init);
module_exit(hello_exit);
用这段源码看看,简单的内核模块没必要用Makefile,直接arm-linux-gcc -o hello.ko _D__KERNEL__ -DMODULE -I /home/pauly/qt2440-2.6.13/include -c hello.c
然后insmod hello.ko
如果还是不行,通常就是两种可能
1. 你嵌入板上的内核跟你编译时的用的内核树版本不同。
2. 编译时的内核树没有编译,编译过程参考http://topic.csdn.net/u/20070516/15/648fa361-0763-42c7-ad4c-b5fa55c245cd.html
|
hefuhua 真有耐心, 呵呵。
楼主如果还不会编译内核, 建议看看
http://www.linuxsir.org/bbs/showthread.php?t=212832
如果是第一次写驱动建议看看
http://blog.csdn.net/pottichu/archive/2007/11/19/1892245.aspx
楼主如果还不会编译内核, 建议看看
http://www.linuxsir.org/bbs/showthread.php?t=212832
如果是第一次写驱动建议看看
http://blog.csdn.net/pottichu/archive/2007/11/19/1892245.aspx