91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux下hello.ko內核模塊制作怎么樣

發布時間:2021-10-22 10:00:39 來源:億速云 閱讀:296 作者:柒染 欄目:互聯網科技

這篇文章給大家介紹Linux下hello.ko內核模塊制作怎么樣,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一、方法一

在內核目錄以外編譯ko文件

1、編寫hello模塊代碼

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

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

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  --->
        <M> hello driver

5、編譯

make SUBDIR=drivers/char/ modules

在內核目錄下面的drivers/char/會生成hello.ko文件

三、方法三

在內存目錄drivers/char下另建一個目錄

1、創建目錄

mkdir hellos

2、編寫hello模塊代碼

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

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  --->
        <M> hellos driver

7、編譯

make SUBDIR=drivers/char/ modules

在內核目錄下面的drivers/char/hellos/會生成hellos.ko文件


 

注意:內核一定要先make,要不然會報錯。


關于Linux下hello.ko內核模塊制作怎么樣就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜阳县| 福安市| 巴中市| 武陟县| 石棉县| 洪湖市| 肥城市| 观塘区| 壶关县| 江永县| 陈巴尔虎旗| 鸡泽县| 临颍县| 平武县| 友谊县| 莲花县| 罗山县| 师宗县| 浮山县| 青州市| 绩溪县| 堆龙德庆县| 中牟县| 东安县| 抚州市| 明光市| 密山市| 沙湾县| 永川市| 益阳市| 白山市| 太仆寺旗| 务川| 福建省| 改则县| 岑溪市| 南宫市| 界首市| 永顺县| 合阳县| 崇文区|