这篇文章给大家介绍Linux下hello.ko内核模块制作怎么样,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
在内核目录以外编译ko文件
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("kent");
static int __init hello_init()
{
printk(KERN_ALERT "hello, world - this is the kernel speaking!\n");
return 0;
}
static void __exit hello_exit()
{
printk(KERN_ALERT "short is the life of a kernel module!\n");
}
module_init(hello_init);
module_exit(hello_exit);
ifneq ($(KERNELRELEASE),)
obj-m:=hello.o
else
KERNELDIR?=/opt/arm/linux-2.6.30.4/
PWD := $(shell pwd)
modules:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
modules_install:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions
.PHONY: modules modules_install clean
endif
make
在该目录下会生成hello.ko文件
在内存目录drivers/char编译
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("kent");
static int __init hello_init()
{
printk(KERN_ALERT "hello, world - this is the kernel speaking!\n");
return 0;
}
static void __exit hello_exit()
{
printk(KERN_ALERT "short is the life of a kernel module!\n");
}
module_init(hello_init);
module_exit(hello_exit);
menu "Character devices"
config HELLO
tristate "hello driver"
depends on ARCH_S3C2440
help
this is my first driver.
FONTMAPFILE = cp437.uni
obj-y += mem.o random.o tty_io.o n_tty.o tty_ioctl.o tty_ldisc.o tty_buffer.o tty_port.o
obj-$(CONFIG_HELLO) += hello.o
obj-$(CONFIG_LEGACY_PTYS) += pty.o
obj-$(CONFIG_UNIX98_PTYS) += pty.o
Device Drivers --->
Character devices --->
<M> hello driver
make SUBDIR=drivers/char/ modules
在内核目录下面的drivers/char/会生成hello.ko文件
在内存目录drivers/char下另建一个目录
mkdir hellos
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
MODULE_AUTHOR("kent");
static int __init hello_init()
{
printk(KERN_ALERT "hello, world - this is the kernel speaking!\n");
return 0;
}
static void __exit hello_exit()
{
printk(KERN_ALERT "short is the life of a kernel module!\n");
}
module_init(hello_init);
module_exit(hello_exit);
vi Makefile
# Makefile for the hellos driver
#
obj-$(CONFIG_HELLOS) += hellos.o
menu "Character devices"
config HELLO
tristate "hello driver"
depends on ARCH_S3C2440
help
this is my first driver.
config HELLOS
tristate "hellos driver"
depends on ARCH_S3C2440
help
this is my second driver.
obj-y += mem.o random.o tty_io.o n_tty.o tty_ioctl.o tty_ldisc.o tty_buffer.o tty_port.o
obj-$(CONFIG_HELLO) += hello.o
obj-$(CONFIG_HELLOS) += hellos/ #这个是刚刚创建的hellos目录
Device Drivers --->
Character devices --->
<M> hellos driver
make SUBDIR=drivers/char/ modules
在内核目录下面的drivers/char/hellos/会生成hellos.ko文件
注意:内核一定要先make,要不然会报错。
关于Linux下hello.ko内核模块制作怎么样就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://my.oschina.net/u/1759641/blog/607561