cilynx / rtl88x2bu

rtl88x2bu driver updated for current kernels.
http://www.wolfteck.com/2018/02/22/wsky_1200mbps_wireless_usb_wifi_adapter/
GNU General Public License v2.0
1.61k stars 316 forks source link

Didn't work with Asus USB-AX55 Nano #254

Closed klugja closed 10 months ago

klugja commented 10 months ago

Not sure if it should have. Not sure what Chipset it uses. The windows driver says Realtek driver install package.

I patched this as follows for the VID/PID:

--- orig/os_dep/linux/usb_intf.c    2023-08-14 14:24:08.180428510 -0500
+++ new/os_dep/linux/usb_intf.c 2023-08-17 12:31:12.040681146 -0500
@@ -240,6 +240,7 @@
    {USB_DEVICE_AND_INTERFACE_INFO(0x0846, 0x9055, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* NeatGear A6150 - AC1200 Dual Band WiFi USB Mini Adapter */
    {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x1841, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* ASUS AC1300 USB-AC55 B1 */
    {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x184c, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* ASUS USB-AC53 Nano */
+   {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x1A62, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* ASUS USB-AX55 Nano */
    {USB_DEVICE_AND_INTERFACE_INFO(0x13b1, 0x0043, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* Alpha - Alpha*/
    {USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x331c, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* Dlink DWA-182*/
    {USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x331e, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, /* Dlink DWA-181-A1*/

No new network device was created, but the driver did load when I plugged it in.

cilynx commented 10 months ago

0b05:1a62 is supported by the rtl8852au driver:

https://github.com/lwfinger/rtl8852au

On Thu, Aug 17, 2023, 4:36 PM klugja @.***> wrote:

Not sure if it should have. Not sure what Chipset it uses. The windows driver says Realtek driver install package.

I patched this as follows for the VID/PID:

--- orig/os_dep/linux/usb_intf.c 2023-08-14 14:24:08.180428510 -0500 +++ new/os_dep/linux/usb_intf.c 2023-08-17 12:31:12.040681146 -0500 @@ -240,6 +240,7 @@ {USB_DEVICE_AND_INTERFACE_INFO(0x0846, 0x9055, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / NeatGear A6150 - AC1200 Dual Band WiFi USB Mini Adapter / {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x1841, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / ASUS AC1300 USB-AC55 B1 / {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x184c, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / ASUS USB-AC53 Nano /

  • {USB_DEVICE_AND_INTERFACE_INFO(0x0b05, 0x1A62, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / ASUS USB-AX55 Nano / {USB_DEVICE_AND_INTERFACE_INFO(0x13b1, 0x0043, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / Alpha - Alpha/ {USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x331c, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / Dlink DWA-182/ {USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x331e, 0xff, 0xff, 0xff), .driver_info = RTL8822B}, / Dlink DWA-181-A1/

No new network device was created, but the driver did load when I plugged it in.

— Reply to this email directly, view it on GitHub https://github.com/cilynx/rtl88x2bu/issues/254, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABONLDAHIBNW5BN3NPJK45TXV2MHLANCNFSM6AAAAAA3UW2VNM . You are receiving this because you are subscribed to this thread.Message ID: @.***>

klugja commented 10 months ago

Thanks.