您好,登錄后才能下訂單哦!
這篇文章給大家介紹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內核模塊制作怎么樣就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。