真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)公司基于分布式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、創(chuàng)建目錄

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目錄創(chuàng)建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/ #這個是剛剛創(chuàng)建的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://weahome.cn/article/jphejj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部