svn commit: r352545 - in stable/12: share/man/man4 sys/dev/rtwn/usb sys/dev/usb

Jung-uk Kim jkim at FreeBSD.org
Thu Sep 19 22:39:15 UTC 2019


Author: jkim
Date: Thu Sep 19 22:39:13 2019
New Revision: 352545
URL: https://svnweb.freebsd.org/changeset/base/352545

Log:
  MFC:	r351653
  
  Add support for TP-Link Archer T2U Nano.

Modified:
  stable/12/share/man/man4/rtwn_usb.4
  stable/12/sys/dev/rtwn/usb/rtwn_usb_attach.h
  stable/12/sys/dev/usb/usbdevs
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/share/man/man4/rtwn_usb.4
==============================================================================
--- stable/12/share/man/man4/rtwn_usb.4	Thu Sep 19 22:15:57 2019	(r352544)
+++ stable/12/share/man/man4/rtwn_usb.4	Thu Sep 19 22:39:13 2019	(r352545)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"/
-.Dd February 2, 2019
+.Dd September 1, 2019
 .Dt RTWN_USB 4
 .Os
 .Sh NAME
@@ -94,6 +94,7 @@ based USB wireless network adapters, including:
 .It "Realtek RTL8192CU" Ta RTL8192CU Ta USB 2.0
 .It "Realtek RTL8188CUS" Ta RTL8188CUS Ta USB 2.0
 .It "Sitecom WLA-7100" Ta RTL8812AU Ta USB 3.0
+.It "TP-Link Archer T2U Nano" Ta RTL8821AU Ta USB 2.0
 .It "TP-Link Archer T4U" Ta RTL8812AU Ta USB 3.0
 .It "TP-Link Archer T4U v2" Ta RTL8812AU Ta USB 3.0
 .It "TP-Link Archer T4UH v1" Ta RTL8812AU Ta USB 3.0

Modified: stable/12/sys/dev/rtwn/usb/rtwn_usb_attach.h
==============================================================================
--- stable/12/sys/dev/rtwn/usb/rtwn_usb_attach.h	Thu Sep 19 22:15:57 2019	(r352544)
+++ stable/12/sys/dev/rtwn/usb/rtwn_usb_attach.h	Thu Sep 19 22:39:13 2019	(r352545)
@@ -158,7 +158,8 @@ static const STRUCT_USB_HOST_ID rtwn_devs[] = {
 	RTWN_RTL8821AU_DEV(MELCO,		WIU2433DM),
 	RTWN_RTL8821AU_DEV(NETGEAR,		A6100),
 	RTWN_RTL8821AU_DEV(REALTEK,		RTL8821AU_1),
-	RTWN_RTL8821AU_DEV(REALTEK,		RTL8821AU_2)
+	RTWN_RTL8821AU_DEV(REALTEK,		RTL8821AU_2),
+	RTWN_RTL8821AU_DEV(TPLINK,		T2UNANO)
 #undef RTWN_RTL8821AU_DEV
 };
 

Modified: stable/12/sys/dev/usb/usbdevs
==============================================================================
--- stable/12/sys/dev/usb/usbdevs	Thu Sep 19 22:15:57 2019	(r352544)
+++ stable/12/sys/dev/usb/usbdevs	Thu Sep 19 22:39:13 2019	(r352545)
@@ -4661,6 +4661,7 @@ product TPLINK WN722NV2		0x010c	TL-WN722N v2
 product TPLINK T4UV2		0x010d	Archer T4U ver 2
 product TPLINK T4UHV1		0x0103	Archer T4UH ver 1
 product TPLINK T4UHV2		0x010e	Archer T4UH ver 2
+product TPLINK T2UNANO		0x011e	Archer T2U Nano
 product TPLINK RTL8153		0x0601	RTL8153 USB 10/100/1000 LAN
 
 /* Trek Technology products */


More information about the svn-src-stable-12 mailing list