Linux设备驱动程序0-hello world

一.在terminal终端下执行:

#mkdir -r  /home/genglaizhi/LDD/0

#cd /home/genglaizhi/LDD/0

#vi hello.c

源代码:

/*
Author:genglaizhi
Time:2012年1月8日15:47:02
ENvironment:ubuntu9
*/
//hello world模块

#include<linux/init.h>//module_exit()&_init()
#include<linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");//2.6内核必须

static int hello_init(void)
{
 printk(KERN_EMERG "hello\n");
 return 0;
}
static void hello_exit(void)
{
 printk(KERN_EMERG "goodbye\n");
}

module_init(hello_init);
module_exit(hello_exit);

保存并退出:wq

二.编辑Makefile

#vi 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*

三.

#make

#insmod ./hello.ko

/*

出现的问题:在终端上看不到输出hello?

*/

解决办法:

#dmesg | tail -8

会显示/var/log/messages文件的最后8行输出,能看到hello了

若再次#insmod ./hello.ko会出现“insmod:error inserting ./hello.ko : -1 File exists"错误,表示模块已经存在,

运行#lsmod会看到hello已经存在

#rmmod hello来卸载模块。

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值