Support
Forums

Re: WiFi Adapter RTL8812AU driver installation fails with the latest kernel: 5.15.0-

Hi @donvito7 ,Looks like ipx.h might have been depreciated in the latest kernel. From what I can see the driver will probably still work, you may just need the missing header files, so if you try copying;/usr/src/linux-5.8.11/include/uapi/linux/ip...
Hi @donvito7 ,
Looks like ipx.h might have been depreciated in the latest kernel. From what I can see the driver will probably still work, you may just need the missing header files, so if you try copying;

/usr/src/linux-5.8.11/include/uapi/linux/ipx.h
/usr/src/linux-5.8.11/include/net/ipx.h

=>

/usr/src/linux-(your version)/include/uapi/linux/ipx.h
/usr/src/linux-(your version)/include/net/ipx.h

(or similar, depending in what previously working version you have) 
.. see if that comp...