色yeye在线视频观看_亚洲人亚洲精品成人网站_一级毛片免费播放_91精品一区二区中文字幕_一区二区三区日本视频_成人性生交大免费看

當前位置:首頁 > 嵌入式培訓 > 嵌入式學習 > 講師博文 > 利用udev、sys動態創建linux設備結點

利用udev、sys動態創建linux設備結點 時間:2018-08-16      來源:未知

在Linux2.6內核中,devfs被認為是過時的方法,并終被拋棄,udev取代了它。Devfs的一個很重要的特點就是可以動態創建設備結點。那我們現在如何通過udev和sys文件系統動態創建設備結點呢?

下面通過一個實例,說明udev、sys動態創建設備結點的方法。注意代碼中紅色的部分是為了實現動態創建設備結點添加的。 
         #include <linux/module.h> 
         #include <linux/kernel.h>
         #include <linux/init.h> 
         #include <linux/fs.h> 
         #include <linux/cdev.h> 
         #include <asm/uaccess.h> 
         #include <linux/device.h>
         MODULE_LICENSE ("GPL");
         int hello_major = 252;
         int hello_minor = 0;
         int number_of_devices = 1;
         char data[50]="foobar not equal to barfoo";
         struct cdev cdev;
         dev_t dev = 0;
         static int hello_open (struct inode *inode, struct file *file)
         {
         printk (KERN_INFO "Hey! device opened\n");
         return 0;
         }
         static int hello_release (struct inode *inode, struct file *file)
         {
         printk (KERN_INFO "Hmmm... device closed\n");
         return 0;
         }
         ssize_t hello_read (struct file *filp, char *buff, size_t count, loff_t *offp)
         {
         ssize_t result = 0;
         if (copy_to_user (buff, data, sizeof(data)-1)) 
         result = -EFAULT;
         else 
         printk (KERN_INFO "wrote %d bytes\n", count);
         return result;
         }
         ssize_t hello_write (struct file *filp, const char *buf, size_t count, loff_t *f_pos)
         {
         ssize_t ret = 0;
         printk (KERN_INFO "Writing %d bytes\n", count);
         if (count>127) return -ENOMEM;
         if (count<0) return -EINVAL;
         if (copy_from_user (data, buf, count)) {
         ret = -EFAULT;
         }
         else {
         data[127]='\0';
         printk (KERN_INFO"Received: %s\n", data);
         ret = count;
         }
         return ret;
         }
         struct file_operations hello_fops = {
.         owner = THIS_MODULE,
.         open = hello_open,
.         release = hello_release,
.         read = hello_read,
.         write = hello_write
         };
         struct class *my_class;
         static void char_reg_setup_cdev (void)
         {
         int error, devno = MKDEV (hello_major, hello_minor);
         cdev_init (&cdev, &hello_fops);
         cdev.owner = THIS_MODULE;
         cdev.ops = &hello_fops;
         error = cdev_add (&cdev, devno , 1);
         if (error)
         printk (KERN_NOTICE "Error %d adding char_reg_setup_cdev", error);
         /* creating your own class */
         my_class =class_create(THIS_MODULE, "farsight_class");//add by lht
         if(IS_ERR(my_class)) {
         printk("Err: failed in creating class.\n");
         return ;
         }
         /* register your own device in sysfs, and this will cause udevd to create corresponding device node */
         class_device_create(my_class,NULL, devno, NULL,"farsight_dev");
         // device_create(my_class,NULL, devno,"farsight_dev");
         }
         static int __init hello_2_init (void)
         {
         int result;
         dev = MKDEV (hello_major, hello_minor);
         result = register_chrdev_region (dev, number_of_devices, "test");
         if (result<0) {
         printk (KERN_WARNING "hello: can't get major number %d\n", hello_major);
         return result;
         }
         char_reg_setup_cdev ();
         printk (KERN_INFO "char device registered\n");
         return 0;
         }
         static void __exit hello_2_exit (void)
         {
         dev_t devno = MKDEV (hello_major, hello_minor);
         cdev_del (&cdev);
         unregister_chrdev_region (devno, number_of_devices);
         class_device_destroy(my_class, devno);
         class_destroy(my_class);
         }
         module_init (hello_2_init);
         module_exit (hello_2_exit);v

在編譯了驅動后,可以查看/dev/farsight_dev設備結點,和 /sys/class/farsight_class/farsight_dev/ 本代碼的測試環境是Ubantu7.04,內核版本是2.6.20-15-generi。在不同版本的內核中,有些系統函數的參數可能不太一樣。 

上一篇:udev機制

下一篇:arm11開發板適合新手學習嗎

熱點文章推薦
華清學員就業榜單
高薪學員經驗分享
熱點新聞推薦
前臺專線:010-82525158 企業培訓洽談專線:010-82525379 院校合作洽談專線:010-82525379 Copyright © 2004-2022 北京華清遠見科技集團有限公司 版權所有 ,京ICP備16055225號-5京公海網安備11010802025203號

回到頂部

主站蜘蛛池模板: 在线中文字幕亚洲日韩2020 | 4虎在线观看 | 裸体黑色丝袜18禁网站无风险 | 四虎影院视频在线观看 | 欧美人与动牲猛交XXXXBBBB | 欧美激情视频一区二区三区 | 国产成人剧情AV果冻传媒 | 蜜臀AV综合网 | 在线视频 一区 二区 | 一本一道av无码中文字幕麻豆 | 精品国产亚洲一区二区三区在线观看 | 亚洲精品毛A片久久久爽 | 国产免费午夜福利片在线 | 中文字幕一区在线 | 亚洲AV无码欧洲AV无码网站 | 午夜dj视频免费观看www | 成人永久免费网站在线观看 | 国产AV麻豆MAG剧集 | 成人性生交A片免费看V | 国产精成人品日日拍夜夜免费 | 麻豆一区二区三区在线观看 | 狠狠综合亚洲综合亚洲色 | 无码任你躁久久久久久 | 国产图区 | 无码爆乳护士让我爽 | 亚洲精品夜夜夜 | 第一区免费在线观看 | 狠狠婷婷综合久久久久久 | 免费国产黄网站在线观看动图 | 乱老年女人伦免费视频 | 水牛影视一区二区三区久 | 久久精品国产亚洲AV无码娇色 | 亚洲国产精品无码专区 | 日本免费一区二区三区日本 | 日韩精品无码中文字幕一区二区 | 免费一对一刺激互动聊天软件 | 久草热久草热线频97精品 | 丰满的熟女爽死你视频 | 亚洲欧美日韩国产综合精品二区 | 欧美肥婆丰满bbw | 韩国久久久久久级做爰片 |