- 论坛徽章:
- 4
|
coconut-zj 发表于 2012-03-14 09:39 ![]()
今天成功编译通过了! 再试了一遍3.1版本的。 编译成功安装后 编译自己的hello模块时引用头文件会出错:
k ...
你在哪抄的代码?这么不规范……
还有,怎么这么喜欢用c++?
makefile:
ifneq ($(KERNELRELEASE),)
obj-m := hello.o
else
KERNELDIR ?= /home/luna/Documents/linux-3.1.10
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
hello.c
#include <linux/kernel.h>
#include <linux/module.h>
static int init_module()
{
printk("HELLO WORLD.");
return 0;
}
static void cleanup_module()
{
printk("module clean up\n");
}
module_init(init_module);
module_exit(cleanup_module); |
|