Chinaunix首页 | 论坛 | 博客
  • 博客访问: 104383
  • 博文数量: 25
  • 博客积分: 2047
  • 博客等级: 大尉
  • 技术积分: 265
  • 用 户 组: 普通用户
  • 注册时间: 2009-07-14 20:51
文章分类

全部博文(25)

文章存档

2012年(1)

2011年(4)

2010年(2)

2009年(18)

我的朋友

分类: LINUX

2009-07-31 23:58:13

//Hello.c
#include
#include
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "Hello world!\n");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye!\n");
}
module_init(hello_init);
module_exit(hello_exit);
 
//Makefile
ifneq ($(KERNEL|RELEASE),)
 obj-m:=hello.o
else
 obj-m:=hello.o
 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
 PWD:=$(shell pwd)
default:
 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
.PHONY:clean
clean:
 rm deit $(objects)
endif
 
/////
insmod hello.ko
lsmod | grep hello
rmmod hello
 
阅读(732) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~