我刚刚开始编写字符驱动程序。因此,当插入我的第一个驱动程序代码时,它从init_module1打印"hello kernel",从内核日志中的exit模块打印"Bye kernel"。当我插入驱动程序并使用dmesg查看内核日志时,我找不到"Hello内核"消息,但当我删除驱动程序(使用rmmod)时,我在日志中得到"Hello内核"one_answers"Bye内核"。想不出怎么回事&为什么。这是我的代码…
header.h
#include<linux/init.h>
#include<linux/module.h>
MODULE_LICENSE("GPL");
init.c
#include"header.h"
static int init_module1(void)
{
printk(KERN_ALERT "Hello kernel");
return 0;
}
module_init(init_module1);
exit.c
#include"header.h"
static void exit_module(void)
{
printk(KERN_ALERT "Bye Kernel");
}
module_exit(exit_module);
Makefile。
INSTALLDIR= $(shell pwd)/modules
ifneq ($(KERNELRELEASE),)
obj-m := c.o
c-objs := init.o exit.o
else
KERNDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNDIR) M=$(PWD) modules
@rm -rf $(INSTALLDIR)
@mkdir $(INSTALLDIR)
@mv *.ko *.mod.c *.o .*.cmd $(INSTALLDIR)
clean:
rm -rf $(INSTALLDIR)
endif
内核日志只处理完整的行。添加缺少的新行字符:
printk(KERN_ALERT "Hello kerneln");