linux内核模块的小问题

一个hello.c的小程序#include<linux/init.h>#include<linux/module.h>MODULE_LICENSE("GPL");inth... 一个hello.c的小程序
#include <linux/init.h>
#include <linux/module.h>

MODULE_LICENSE("GPL");

int hello_init()
{
printk(KERN_WARNING"Hello World %d!\n",year);
return 0;
}

void hello_exit()
{
printk("Hello Exit!\n");
}
module_init(hello_init);
module_exit(hello_exit);

makefile如下:
obj-m : = hello.c
全部是模仿一本书的例子。执行命令:
make -C /usr/src/linux-headers-2.6.38-8 M=$(pwd)modules

出现如下错误:
a123@a123-virtual-machine:~/lx/linux_shebeiqudong$ make -C /usr/src/linux-headers-2.6.38-8 M=$(pwd)modules
make: Entering directory `/usr/src/linux-headers-2.6.38-8'
ERROR: Kernel configuration is invalid.
include/generated/autoconf.h or include/config/auto.conf are missing.
Run 'make oldconfig && make prepare' on kernel src to fix it.

WARNING: Symbol version dump /usr/src/linux-headers-2.6.38-8/Module.symvers
is missing; modules will have no dependencies and modversions.
scripts/Makefile.build:44: /home/a123/lx/linux_shebeiqudongmodules/Makefile: No such file or directory
make[1]: *** No rule to make target `/home/a123/lx/linux_shebeiqudongmodules/Makefile'. Stop.
make: *** [_module_/home/a123/lx/linux_shebeiqudongmodules] Error 2
make: Leaving directory `/usr/src/linux-headers-2.6.38-8'

求解,不胜感激
展开
 我来答
豆a豆a豆
2012-07-25
知道答主
回答量:18
采纳率:0%
帮助的人:22.7万
展开全部
使用 locate include/generated/autoconf.h 来查找系统中有没有这个文件,如果有的话看看它给的路径的你写的路径有无出入。如果没有的话我就不知道怎么回事了。
还有你的命令只怕也写错了,这样在父目录中创建一个与以本目录为前缀,加上modules为名的新目录,而不是在本目录中创建一个名为modules的子目录。 $(pwd)modules 似应该为 $(pwd)/modules, 另外如果这样改的话,那么 modules/Makefile 中的hello.c 也应该改为../hello.c , 要不路径就错误了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
人工智能研习社
2012-07-26 · TA获得超过237个赞
知道小有建树答主
回答量:216
采纳率:0%
帮助的人:240万
展开全部
内核源码,需要配置一下,并且编译一次,才可以编译驱动模块。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
鸭宝宝_1988
2012-07-29 · 超过13用户采纳过TA的回答
知道答主
回答量:64
采纳率:100%
帮助的人:40.8万
展开全部
include/generated/autoconf.h or include/config/auto.conf已经没有了,内核要重新编译
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
kenlf0508
2013-10-01 · TA获得超过270个赞
知道小有建树答主
回答量:103
采纳率:0%
帮助的人:81万
展开全部
把你的makefile文件命名为”Makefile“。注意首字母是大写的M!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式