kaiw2008-08-23 17:35:15 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/dev/usb ums.c
Log:
SVN rev 182073 on 2008-08-23 17:35:15Z by kaiw
MFC r181844:
sc->sc_ibuf should be malloc'ed after quirks applied, as
sc->sc_isize might hav
kaiw2008-08-23 17:32:43 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/dev/usb ums.c
Log:
SVN rev 182072 on 2008-08-23 17:32:43Z by kaiw
MFC r181839:
Re-add Microsoft Intellimouse 2.0 TWHEEL quirk.
Tested by: Merritt Dran
kaiw2008-08-18 17:13:23 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
SVN rev 181844 on 2008-08-18 17:13:23Z by kaiw
sc->sc_ibuf should be malloc'ed after quirks applied, as
sc->sc_isize might have changed.
MFC after: 3 days
Rev
kaiw2008-08-18 16:29:13 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
SVN rev 181839 on 2008-08-18 16:29:13Z by kaiw
Re-add Microsoft Intellimouse 2.0 TWHEEL quirk.
Tested by: Merritt Draney, Brian Cox
PR: kern/123224
kaiw2008-06-12 16:45:46 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/dev/usb ums.c usbdevs
Log:
SVN rev 179761 on 2008-06-12 16:45:46Z by kaiw
MFC r178697: Add support for Microsoft Notebook Optical
Mouse 3000 Model 1049.
PR:
kaiw2008-04-30 19:37:54 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c usbdevs
Log:
Add support for Microsoft Notebook Optical Mouse 3000 Model 1049.
Reviewed by:imp
(RELENG-7) Tested by: Oliver Herold <[EMAIL PROTECTED]>
PR:
rpaulo 2008-04-08 12:35:56 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/dev/usb ums.c
Log:
MFC r1.97:
Sync with rev 1.63 of NetBSD's ums.c:
If a mouse has both a wheel and a Z direction we report both.
XXX Due to traditi
rpaulo 2008-04-08 12:35:55 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/dev/usb ums.c
Log:
MFC r1.97:
Sync with rev 1.63 of NetBSD's ums.c:
If a mouse has both a wheel and a Z direction we report both.
XXX Due to traditi
jhb 2008-03-20 13:07:26 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_7)
sys/dev/usb ums.c
Log:
MFC: Restore the original hid_is_collection() test and fallback to testing
the interface class, subclass, and protocol if that fails.
Revision
jhb 2008-03-12 20:20:36 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Partially revert 1.95. It changed the probe for a mouse device to only
accept a mouse using the boot subclass. Instead, restore the original
hid_is_collection() test and f
rpaulo 2007-12-26 14:31:16 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Sync with rev 1.63 of NetBSD's ums.c:
If a mouse has both a wheel and a Z direction we report both.
XXX Due to tradition the wheel is reported as the Z direction (
imp 2007-07-25 06:43:06 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
ums(4) does not work if the mouse defaults to boot protocol. Force
the protocol to be report on each open, but ignore any errors as set
protocol for mice that don't impleme
imp 2007-06-29 21:07:41 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c usb_quirks.c usb_quirks.h usbdevs
Log:
Add support for various MS Wirless usb mice. the patch is from
Hellmuth with some refinements by myself and [EMAIL PROTECTED] It works for
markus 2007-01-21 02:27:40 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_4)
sys/dev/usb ums.c
Log:
MFC rev. 1.83:
Fix a buffer overflow iff USB_DEBUG is set, hw.usb.ums.debug is > 5 and the
total size of all input reports is < 6.
Appr
markus 2007-01-21 02:27:35 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_5)
sys/dev/usb ums.c
Log:
MFC rev. 1.83:
Fix a buffer overflow iff USB_DEBUG is set, hw.usb.ums.debug is > 5 and the
total size of all input reports is < 6.
Appr
markus 2007-01-21 02:27:30 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/dev/usb ums.c
Log:
MFC rev. 1.83:
Fix a buffer overflow iff USB_DEBUG is set, hw.usb.ums.debug is > 5 and the
total size of all input reports is < 6.
Appr
markus 2007-01-17 03:50:45 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Fix a buffer overflow iff USB_DEBUG is set, hw.usb.ums.debug is > 5 and the
total size of all input reports is < 6.
PR: usb/106435
Submitted by: Eygene Ry
netchild2006-02-06 20:29:17 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/dev/usb ums.c
Log:
MFC rev 1.79 and 1.80:
Allow to use more than 7 buttons (31 in case you don't want to look
at the code) with USB mice.
Requested by: SeÃ
Alexander Leidinger wrote:
> On Fri, 30 Dec 2005 01:28:53 -0800
> Nate Lawson <[EMAIL PROTECTED]> wrote:
>
> > >>> #define UMS_BUT(i) ((i) < 3 ? (((i) + 2) % 3) : (i))
>
> > I meant that this maps 0:2, 1:0, 2:1, 3:3, 4:4, ... Or in other words,
> > it only operates on 2-bit values (0-3). I don
On Fri, 30 Dec 2005 01:28:53 -0800
Nate Lawson <[EMAIL PROTECTED]> wrote:
> >>> #define UMS_BUT(i) ((i) < 3 ? (((i) + 2) % 3) : (i))
> I meant that this maps 0:2, 1:0, 2:1, 3:3, 4:4, ... Or in other words,
> it only operates on 2-bit values (0-3). I don't know if that's an issue
> or not, I j
Alexander Leidinger wrote:
On Thu, 29 Dec 2005 11:26:21 -0800
Nate Lawson <[EMAIL PROTECTED]> wrote:
Index: src/sys/dev/usb/ums.c
diff -u src/sys/dev/usb/ums.c:1.79 src/sys/dev/usb/ums.c:1.80
--- src/sys/dev/usb/ums.c:1.79 Thu Dec 29 17:44:40 2005
+++ src/sys/dev/usb/ums.c Thu Dec 29 18
On Thu, 29 Dec 2005 11:26:21 -0800
Nate Lawson <[EMAIL PROTECTED]> wrote:
> > Index: src/sys/dev/usb/ums.c
> > diff -u src/sys/dev/usb/ums.c:1.79 src/sys/dev/usb/ums.c:1.80
> > --- src/sys/dev/usb/ums.c:1.79 Thu Dec 29 17:44:40 2005
> > +++ src/sys/dev/usb/ums.c Thu Dec 29 18:35:28 2005
> >
Alexander Leidinger wrote:
netchild2005-12-29 18:35:28 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Sync the type (and size, compare mousestatus_t in /usr/include/sys/mouse.h)
of a variable according to the usage (after increasing the number of
netchild2005-12-29 18:35:28 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Sync the type (and size, compare mousestatus_t in /usr/include/sys/mouse.h)
of a variable according to the usage (after increasing the number of max
buttons this may matter)
On Thursday 29 December 2005 19:18, Florent Thoumie wrote:
> On Thursday 29 December 2005 18:44, Alexander Leidinger wrote:
> > netchild2005-12-29 17:44:40 UTC
> >
> > FreeBSD src repository
> >
> > Modified files:
> > sys/dev/usb ums.c
> > Log:
> > Merge NetBSD rev. 1.61:
On Thursday 29 December 2005 18:44, Alexander Leidinger wrote:
> netchild2005-12-29 17:44:40 UTC
>
> FreeBSD src repository
>
> Modified files:
> sys/dev/usb ums.c
> Log:
> Merge NetBSD rev. 1.61:
>- Support more than 7 buttons for USB mice. Patch from NetBSD
> kern/302
netchild2005-12-29 17:44:40 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ums.c
Log:
Merge NetBSD rev. 1.61:
- Support more than 7 buttons for USB mice. Patch from NetBSD kern/30248.
PR: 83353
Submitted by: Seán Farley <[EMAIL PROTECTED]
27 matches
Mail list logo