亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

最簡單的Linux驅(qū)動(dòng)程序

時(shí)間:2023-03-28 00:03:03 Linux認(rèn)證 我要投稿
  • 相關(guān)推薦

最簡單的Linux驅(qū)動(dòng)程序

  你正在學(xué)習(xí)linux嗎?你知道最簡單的Linux驅(qū)動(dòng)程序是怎么樣的嗎?下面yjbys小編為大家提供最簡單的Linux驅(qū)動(dòng)程序,希望對大家有所幫助!

  #include

  #include //兩個(gè)必須頭文件

  MODULE_LICENSE("Dual BSD/GPL");//GPL協(xié)議

  static char *whom = "world";//insmod傳入?yún)?shù)是用到

  static int howmany = 1;//insmod傳入?yún)?shù)是用到

  module_param(howmany,int,S_IRUGO);//傳入?yún)?shù)要用module_param宏來聲明。這樣我們就可以使用insmod命令

  //時(shí)傳入?yún)?shù),其實(shí)是模塊讓這些參數(shù)對insmod命令可見

  module_param(whom,charp,S_IRUGO);

  unsigned int i;

  static int hello_init(void)

  {

  printk(KERN_ALERT "Hello,world\n");

  for(i=0;i

  printk(KERN_ALERT "hello %s\n",whom);

  return 0;

  }

  static void hello_exit(void)

  {

  printk(KERN_ALERT "Goodbye, cruel world\n");

  }

  module_init(hello_init);

  module_exit(hello_exit);

  下面是Makefile文件

  obj-m += hello.o//obj-m編譯成模塊

  KERDIR = /work/linux-2.6.30.4//內(nèi)核所在目錄

  modules:

  make -C $(KERDIR) M=`pwd` modules//-C表示進(jìn)入到后面目錄里編譯,M=` `指定編譯好的文件所在目錄

  clean:

  rm -rf *.o *~core .depend *.cmd *.ko *.mod.c *.tmp_versions

  下面是加載模塊時(shí)情況

  [root@cgyl2010 ~]#insmod hello.ko howmany=10 whom="Mom"

  Hello,world

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  hello Mom

  這樣就可以通過insmoa命令傳進(jìn)來的參數(shù)來控制我們要實(shí)現(xiàn)的現(xiàn)象(這里是打印情況),有時(shí)候會(huì)比較方便。

【最簡單的Linux驅(qū)動(dòng)程序】相關(guān)文章:

Linux系統(tǒng)的10個(gè)最危險(xiǎn)命令06-17

Linux認(rèn)證系統(tǒng)管理:linux下搭建ftp08-26

Linux 考試試題08-20

Linux基本指令大全11-23

Linux認(rèn)證賬戶映射06-21

Linux文件權(quán)限詳解05-11

Linux認(rèn)證考試科目06-03

Linux cpuinfo系統(tǒng)詳解07-29

Linux認(rèn)證基礎(chǔ)知識:linux操作系統(tǒng)目錄結(jié)構(gòu)08-26

Linux認(rèn)證考試科目設(shè)置06-13