- 论坛徽章:
- 0
|
#cat Makefile
obj-m := hello.o
CFLAGS += -g -Wall -O2
default:
$(MAKE) -C /lib/modules/`uname -r`/build M=`pwd` modules
clean:
rm -f *.o *.ko *.mod.* *~ Module.symvers
#cat hello.c
#include
#include
#define DPRINTK(fmt, args...) printk(KERN_ALERT fmt, ##args)
MODULE_AUTHOR("guqing");
MODULE_LICENSE("GPL");
static int test_me=123;
EXPORT_SYMBOL(test_me);
static int __init hello_init(void)
{
DPRINTK("hello, world\n");
return 0;
}
static void __exit hello_exit(void)
{
DPRINTK("Goodbye, world\n");
}
module_init(hello_init);
module_exit(hello_exit);
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/7356/showart_366050.html |
|