Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Testers for cdce(4) wanted



Hi! Matthias,


From: Matthias Scheler <tron%NetBSD.org@localhost>
Date: Mon, 17 Aug 2009 13:45:20 +0100

> I've committed Pierre Pronchery's changes for cdce(4) to make it work
> with the Openmoko Freerunner. Can somebody please confirm that the
> driver still works with previously supported hardware before I submit
> a pullup request?

My landisk and evbppc works with your fix.

  landisk <-- cdce(4) --> evbppc


However I found this message.

  # ifconfig cdce0 XXX.XXX.XXX.XXX
  cdce0: cannot assign link-local address


I think need this fix.

Index: sys/dev/usb/if_cdce.c
===================================================================
RCS file: /cvsroot/src/sys/dev/usb/if_cdce.c,v
retrieving revision 1.24
diff -u -r1.24 if_cdce.c
--- sys/dev/usb/if_cdce.c       4 Sep 2009 18:10:08 -0000       1.24
+++ sys/dev/usb/if_cdce.c       13 Sep 2009 00:17:42 -0000
@@ -499,6 +499,8 @@

        default:
                error = ether_ioctl(ifp, command, data);
+               if (error == ENETRESET)
+                       error = 0;
                break;
        }


Thanks,
--
kiyohara


Home | Main Index | Thread Index | Old Index