hello.c核心模組編譯 -- linux核心

來源:互聯網
上載者:User

標籤:

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核心

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.