分类: LINUX
2008-08-20 18:18:11
#include #include #include staticinthello_init(void) { printk("Hello!Thisisthefirsttestmodule!\n"); return0; } staticvoidhello_exit(void) { printk("Moduleexit!ByeBye!\n"); return; } module_init(hello_init); module_exit(hello_exit); MODULE_LICENSE("GPL");
obj-m:=testmodule.o KDIR:=/src/linux-2.6.12 PWD:=$(shellpwd) default: $(MAKE)-C$(KDIR)SUBDIRS=$(PWD)modules #################################################