diff options
author | 2006-10-19 16:53:48 +0000 | |
---|---|---|
committer | 2006-10-19 16:53:48 +0000 | |
commit | 762ed0f17f8be8b272ae47d47682ef03f0c63d1e (patch) | |
tree | 85a392832d98caa7e2688218ceaaeddf66b5129b | |
parent | Add a sample configuration file for the newly comitted RIP daemon. (diff) | |
download | wireguard-openbsd-762ed0f17f8be8b272ae47d47682ef03f0c63d1e.tar.xz wireguard-openbsd-762ed0f17f8be8b272ae47d47682ef03f0c63d1e.zip |
Support later versions of the ASUS WL-167g which have switched
from ural to rum.
From Jason Crawford <jasonrcrawford@gmail.com>
-rw-r--r-- | share/man/man4/ral.4 | 4 | ||||
-rw-r--r-- | share/man/man4/rum.4 | 3 | ||||
-rw-r--r-- | sys/dev/usb/if_rum.c | 3 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs | 3 |
4 files changed, 8 insertions, 5 deletions
diff --git a/share/man/man4/ral.4 b/share/man/man4/ral.4 index 496fadcf6ed..676af1fe18e 100644 --- a/share/man/man4/ral.4 +++ b/share/man/man4/ral.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ral.4,v 1.58 2006/08/30 23:14:30 jmc Exp $ +.\" $OpenBSD: ral.4,v 1.59 2006/10/19 16:53:49 jsg Exp $ .\" .\" Copyright (c) 2005, 2006 .\" Damien Bergamini <damien.bergamini@free.fr> @@ -357,7 +357,7 @@ Zinwell ZWX-G360. The following USB 2.0 adapters should work: .Bd -filled AMIT WL532U. -ASUS WL-167g. +ASUS WL-167g v1. Belkin F5D7050 v2000. Buffalo WLI-U2-KG54. Buffalo WLI-U2-KG54-AI. diff --git a/share/man/man4/rum.4 b/share/man/man4/rum.4 index fa9cc35f146..ed5a1c92e2c 100644 --- a/share/man/man4/rum.4 +++ b/share/man/man4/rum.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rum.4,v 1.15 2006/09/30 08:04:04 jsg Exp $ +.\" $OpenBSD: rum.4,v 1.16 2006/10/19 16:53:48 jsg Exp $ .\" .\" Copyright (c) 2005, 2006 .\" Damien Bergamini <damien.bergamini@free.fr> @@ -221,6 +221,7 @@ The following adapters should work: .Pp .Bl -tag -width Ds -offset indent -compact .It Airlink101 AWLL5025 +.It ASUS WL-167g ver 2 .It Belkin F5D7050 ver 3 .It Belkin F5D9050 ver 3 .It CNet CWD-854 ver F diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index dede128ace7..4de38f80340 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.40 2006/09/18 16:20:20 damien Exp $ */ +/* $OpenBSD: if_rum.c,v 1.41 2006/10/19 16:53:48 jsg Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr> @@ -83,6 +83,7 @@ int rum_debug = 0; /* various supported device vendors/products */ static const struct usb_devno rum_devs[] = { { USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_RT2573 }, + { USB_VENDOR_ASUS, USB_PRODUCT_ASUS_RT2573 }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050A }, { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D9050V3 }, { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_WUSB54GC }, diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index ce49624fce2..590250a3e0c 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1,4 +1,4 @@ -$OpenBSD: usbdevs,v 1.225 2006/09/29 08:43:07 jsg Exp $ +$OpenBSD: usbdevs,v 1.226 2006/10/19 16:53:48 jsg Exp $ /* $NetBSD: usbdevs,v 1.322 2003/05/10 17:47:14 hamajima Exp $ */ /* @@ -693,6 +693,7 @@ product ASIX AX88772 0x7720 AX88772 /* ASUS products */ product ASUS RT2570 0x1706 RT2570 product ASUS RT2570_2 0x1707 RT2570 +product ASUS RT2573 0x1723 RT2573 product ASUS WL159G 0x170c WL-159g product ASUS MYPAL_A730 0x4202 MyPal A730 |