diff options
author | 2009-03-27 11:38:46 +0000 | |
---|---|---|
committer | 2009-03-27 11:38:46 +0000 | |
commit | 7117f35adf21f1bc668e9dc616a0e52fec4a50f6 (patch) | |
tree | dde24a80f0fe2093b6a0bf75add7cc32eb74629d | |
parent | regen (diff) | |
download | wireguard-openbsd-7117f35adf21f1bc668e9dc616a0e52fec4a50f6.tar.xz wireguard-openbsd-7117f35adf21f1bc668e9dc616a0e52fec4a50f6.zip |
Linksys WUSB200 should work according to linux driver
-rw-r--r-- | share/man/man4/rum.4 | 5 | ||||
-rw-r--r-- | sys/dev/usb/if_rum.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man4/rum.4 b/share/man/man4/rum.4 index d8e2244fe02..665b526aad4 100644 --- a/share/man/man4/rum.4 +++ b/share/man/man4/rum.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rum.4,v 1.44 2009/02/16 08:15:22 jmc Exp $ +.\" $OpenBSD: rum.4,v 1.45 2009/03/27 11:38:46 jsg Exp $ .\" .\" Copyright (c) 2005-2007 .\" Damien Bergamini <damien.bergamini@free.fr> @@ -15,7 +15,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: February 16 2009 $ +.Dd $Mdocdate: March 27 2009 $ .Os .Dt RUM 4 .Sh NAME @@ -135,6 +135,7 @@ The following adapters should work: .It Hercules HWGUSB2-54-LB .It Hercules HWGUSB2-54V2-AP .It LevelOne WNC-0301USB v3 +.It Linksys WUSB200 .It Linksys WUSB54G rev C .It Linksys WUSB54GR .It Planex GW-US54HP diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index 4789263a2e9..02c297fae54 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rum.c,v 1.82 2009/02/03 10:53:28 kevlo Exp $ */ +/* $OpenBSD: if_rum.c,v 1.83 2009/03/27 11:38:46 jsg Exp $ */ /*- * Copyright (c) 2005-2007 Damien Bergamini <damien.bergamini@free.fr> @@ -92,6 +92,7 @@ static const struct usb_devno rum_devs[] = { { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050A }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D9050V3 }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D9050C }, + { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB200 }, { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB54GC }, { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB54GR }, { USB_VENDOR_CONCEPTRONIC2, USB_PRODUCT_CONCEPTRONIC2_C54RU2 }, |