Hi, I have an old Gigabyte Brix and I bought a new TPLink Archer T4U to be able to connect using AC but unfortunatelly, it's not working. Now my problem is that I cannot use it in LE because it's the Version 2 of the T4U and the normal driver does not work. I was able to make it work on Ubuntu using the following driver (see below) but making some changes:
1) Driver: GitHub - gnab/rtl8812au: Realtek 802.11n WLAN Adapter Linux driver
2) Then modify this lines adding the "0x010d" in /rtl8812au/os_dep/linux/usb_intf.c
{USB_DEVICE(0x2357, 0x0101),.driver_info = RTL8812}, **
{USB_DEVICE(0x2357, 0x010d),.driver_info = RTL8812},**
3) Compiling.
This is because the driver is not including this model, but it's based on the same chip actually (if I'm not wrong). Now my question is, is it possible to do something similar in LibreElec ?
Thanks.