- 论坛徽章:
- 0
|
最近在学习linux内核模块的知识,写了一个简单的程序。加上makefile文件后总是找不到头文件。下面是程序和makefile文件。请高手指点。谢谢!
makefile:
ifneq (($KERNELRELEASE),)
obj-m : hello.o
else
KDIR : /lib/modules/2.6.18-53.el5/build
all:
make -C $(KDIR) M=$(PWD) modules
clean:
rm -f *.ko *.o *.mod.c *.symvers
endif
模块文件hello.c:
#include<linux/init.h>
#include<linux/module.h>
static int hello_init(void)
{
printk("Hello world!\n");
return 0;
}
static void hell0_exit(void)
{
printk("<7>Goodbye <0>world!\n");
}
module_init(hello_init);
module_exit(hello_exit); |
|