分类: LINUX
2011-06-16 13:39:17
源程序hello.c:
////////////////////////////////////////////////////////////////////////////
#include
#include
#include
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void) //有的上面定义的是init_modules(void)是通不过编译的
{
printk(KERN_ALERT "Hello, world\n");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye, world\n");
}
module_init(hello_init);
module_exit(hello_exit);
////////////////////////////////////////////////////////////////////////
Makefile的内容:
ifneq ($(KERNELRELEASE),)
obj-m := hello.o
else
KDIR:=/lib/modules/$(shell uname -r)/build
PWD:=$(shell pwd)
all:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
endif
clean:
rm -f *.o *.ko *.mod.c .hello*
//////////////////////////////////////////////////////////
加载模块:insmod ./hello.ko
查看加载的模块: lsmod | grep hello
tail -f /var/log/message
Jun 16 13:40:31 localhost kernel: Hello, world