我正在尝试在linux kernel module中编译一个“Hello world” Fedora 14程序。
我的内核版本是“2.6.35.14-97.fc14.i686”,我指的是make文件中的/lib/modules/$(shell uname -r)/build M=$(PWD)模块来编译我的hello.o程序。

此“构建”文件将其显示为特殊文件,并链接到/lib/module/2.6....i686/文件夹中的源。

当我编译我的代码时出现错误以下。

make -C /lib/modules/2.6.35.14-97.fc14.i686/build M=/root/kernel modules
make: *** /lib/modules/2.6.35.14-97.fc14.i686/build: No such file or directory.  Stop.

我的Makefile:
obj-m +=hello.o

all:
        make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

请给我解决方案来运行此模块程序。

最佳答案

您只需要可以使用yum安装的“kernel-devel”即可。我使用ubuntu,我只需要下载3.5.0-22-generic软件包即可使用,但是在Google上进行的快速“Fedora内核开发模块”搜索使我Here
希望这可以帮助。

关于c - Linux内核模块编程Makefile错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14445988/

10-13 02:43