6

我正在尝试编译 Linux 内核: http ://tldp.org/LDP/lkmpg/2.6/html/lkmpg.html

我有一个简单的 hello world 程序 hello-1.cpp

#include <linux/module.h>
#include <linux/kernel.h>

int init_module(void)
{
    return 0;
}

void cleanup_module(void)
{
}

但我正在尝试使用 Makefile 构建它:

obj-m += hello-1.o

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

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

我有几个错误。

make -C /home/pacman/linux-2.6.34.11/2.6.35.6-45.fc14.i686/build M=/home/pacman/p1 modules
make: *** /home/pacman/linux-2.6.34.11/2.6.35.6-45.fc14.i686/build: No such file or directory.  Stop.

制作:* [全部] 错误 2

我忘记定义什么了吗?

4

1 回答 1

1

重命名 hello-1。cpp到 hello-1。c(模块必须用 C 编写)并添加以下行:

module_init(init_module);
module_exit(cleanup_module);
于 2012-05-05T16:34:18.400 回答