码迷,mamicode.com
首页 > 其他好文 > 详细

helloworld模块

时间:2018-01-08 18:33:20      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:+=   static   alert   build   hello   ice   nbsp   linux   -o   

hello.c:

#include <linux/init.h>
#include <linux/module.h>
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, cruel world\n");
}
module_init(hello_init);
module_exit(hello_exit);

Makefile:

KVERS = $(shell uname -r)

# Kernel modules
obj-m += hello.o

# Specify flags for the module compilation.
#EXTRA_CFLAGS=-g -O0

build: kernel_modules

kernel_modules:
make -C /lib/modules/$(KVERS)/build M=$(CURDIR) modules

clean:
make -C /lib/modules/$(KVERS)/build M=$(CURDIR) clean

 

加载模块:

insmod ./hello.ko

卸载模块:

rmmod hello

 

查看打印信息:

dmesg | tail

helloworld模块

标签:+=   static   alert   build   hello   ice   nbsp   linux   -o   

原文地址:https://www.cnblogs.com/poonpan/p/8243729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!