標籤:
Linux開發模組,在本機上看調試資訊的方法走通了。目前的版本號2.6.32-32-generic
uname –r
能夠查詢
這裡取module_param()作為範例。
該宏被定義在include/linux/moduleparam.h檔案裡,詳細定義例如以下:
#define module_param(name, type, perm)
module_param_named(name, name, type, perm)
當中使用了 3個參數:要傳遞的參數變數名, 變數的資料類型, 以及訪問參數的許可權。
hello.c
#include <linux/init.h> #include <linux/module.h>#include <linux/moduleparam.h>MODULE_LICENSE("Dual BSD/GPL");static char *flag="world"; static int times = 5;module_param(times,int,S_IRUSR);module_param(flag,charp,S_IRUSR);static int hello_init(void){int i;for(i=0;i<=times;i++){printk("(%d)hello ,%s\n",i,flag); //KERN_DEBUG}return 0;}static void hello_exit(void){printk("Goodbye,%s\n",flag); //KERN_DEBUG}module_init(hello_init);module_exit(hello_exit);
這個檔案須要編譯成模組,採用
Makefile
obj-m:= hello.oKERNELDIR := /lib/modules/$(shell uname -r)/buildPWD := $(shell pwd)default:$(MAKE) -C $(KERNELDIR) M=$(PWD) modulesclean:rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
1),-C $(KERNELDIR)
表示在$(KERNELDIR)檔案夾下運行make命令。
2),M=$(PWD)
表示包括$(PWD)下的Makefile檔案。
3),modules
表示模組編譯
在終端中
make
產生hello.ko模組
Insmod hello.ko flag=”daniu” times=5
[email protected]:/mnt/hgfs/test_curl/core# dmesg -c
[ 9057.070444] Goodbye,\xffffffe2\xffffff80\xffffff9d\xffffff80\xffffff9ddaniu\xffffffe2\xffffff80\xffffff9d\xffffff80\xffffff9d
[ 9059.357777] (0)hello ,daniu
[ 9059.357781] (1)hello ,daniu
[ 9059.357783] (2)hello ,daniu
[ 9059.357784] (3)hello ,daniu
[ 9059.357785] (4)hello ,daniu
[ 9059.357786] (5)hello ,daniu
rmmod hello.ko
hello.c核心模組編譯 -- linux核心