资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Linux下hello.ko内核模块制作怎么样

这篇文章给大家介绍Linux下hello.ko内核模块制作怎么样,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

成都创新互联公司基于分布式IDC数据中心构建的平台为众多户提供德阳服务器托管 四川大带宽租用 成都机柜租用 成都服务器租用。

一、方法一

在内核目录以外编译ko文件

1、编写hello模块代码

#include 
#include 
#include 

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);

2、编写hello模块的Makefile文件

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

3、编译

make

在该目录下会生成hello.ko文件

二、方法二

在内存目录drivers/char编译

1、编写hello模块代码

#include 
#include 
#include 
 
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);

2、在内核源码中添加对hello驱动的支持

menu "Character devices"

config HELLO
        tristate "hello driver"
        depends on ARCH_S3C2440
        help
          this is my first driver.

3、修改同目录下的Makefile文件

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

4、配置内核

Device Drivers  ---> 
    Character devices  --->
         hello driver

5、编译

make SUBDIR=drivers/char/ modules

在内核目录下面的drivers/char/会生成hello.ko文件

三、方法三

在内存目录drivers/char下另建一个目录

1、创建目录

mkdir hellos

2、编写hello模块代码

#include 
#include 
#include 
 
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);

3、在hellos目录创建Makefile文件

vi Makefile
# Makefile for the hellos driver
#

obj-$(CONFIG_HELLOS) += hellos.o

4、修改drivers/char目录的Kconfig

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.

5、修改drivers/char目录的Makefile

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目录

6、配置内核

Device Drivers  ---> 
    Character devices  --->
         hellos driver

7、编译

make SUBDIR=drivers/char/ modules

在内核目录下面的drivers/char/hellos/会生成hellos.ko文件


 

注意:内核一定要先make,要不然会报错。

关于Linux下hello.ko内核模块制作怎么样就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


当前名称:Linux下hello.ko内核模块制作怎么样
URL地址:http://cdkjz.cn/article/jphejj.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220