解决Android设备插入打印机无法启动

  一直在想起一个什么题目好一些,题目只是最初的现实,经过不断调试最后很是其它问题,想要起一个其它名字比如《打印机驱动中热插拔事件中添加DEVTYPE》。但是最后想了想还是回到最初才是好的。
  具体现象:源码位置NativeDaemonConnector.java(查看VOLD的TAG)
02-10 01:21:02.340: E/VoldConnector(11051): got -1 reading with start = 0
02-10 01:21:02.340: E/VoldConnector(11051): closing stream for vold
02-10 01:21:02.340: E/VoldConnector(11051): Communications error: java.io.IOException: No such file or directory
02-10 01:21:02.340: E/VoldConnector(11051): Error in NativeDaemonConnector: java.io.IOException: No such file or directory
  分析:在不做任何程序上的修改的情况下,插入USB无线网卡是没有问题的。目前打印机和无线网卡都是没有上报信息的,这就排除了上报消息的原因了。目前的区别是DEVTYPE,前者是无,后者是有的。
  
  查看所有error时找出了问题所在:
  NetlinkEvent::FindParam(): Parameter 'DEVTYPE' not found
  果真是之前的假设问题,在获取DEVTYPE时出的问题

  以下就是如何在内核的usb打印机驱动中添加DEVTYPE的问题,花费了一下午的时间以下的diff文件:
diff --git a/kernel/drivers/usb/class/usblp.c b/kernel/drivers/usb/cl
index 9eca405..b528437 100755
--- a/kernel/drivers/usb/class/usblp.c
+++ b/kernel/drivers/usb/class/usblp.c
@@ -1046,8 +1046,13 @@ static const struct file_operations usblp_fops
        .llseek =       noop_llseek,
 };
 
+static struct device_type printer_type = {
+       .name   = "printer",
+};
+
 static char *usblp_devnode(struct device *dev, mode_t *mode)
 {
+       dev->type=&printer_type;
        return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
 }
 
@@ -1072,6 +1077,7 @@ static ssize_t usblp_show_ieee1284_id(struct de
 
 static DEVICE_ATTR(ieee1284_id, S_IRUGO, usblp_show_ieee1284_id, NUL
 
+
 static int usblp_probe(struct usb_interface *intf,
                       const struct usb_device_id *id)
 {
@@ -1079,6 +1085,8 @@ static int usblp_probe(struct usb_interface *in
        struct usblp *usblp;
        int protocol;
        int retval;
+       //dev->children[0]->dev.type=&printer_type;
+       //dev->dev.type=&printer_type;
 
        /* Malloc and start initializing usblp structure so we can us
         * directly. */
      注:注释的那两条是测试的过但是不成功的方法

      这里点名感谢一下《Linux驱动》群中的LinuxDrv群主。一步步指点着添加成功了。如下图:


评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

袁保康

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值