The below is for 1.5-rolling only, doesn’t cover 1.4, disregard.
I would say that in almost all cases you will be better off with a dedicated access point. They are cheap and will be more capable than VyOS’s wifi support. VyOS documentation: WLAN/WIFI - Wireless LAN
But if you insist: There is no official Linux driver from Realtek but it seems to be part of the Linux kernel, driver rtw88.
You can’t compile it on VyOS itself, you can compile it with the vyos-build docker container on host computer. You would have to modify the VyOS default kernel config to include the rtw88 module and the rtl8821ce device.
Read the Build VyOS / Docker part and start with building an image yourself.
If you got that working, while still in the vyos-build git repo, add the following two lines to the end of
## from within the vyos build docker container
cd /vyos/scripts/package-build/linux-kernel
./build.py --config package.toml --packages linux-kernel
## and copy the resulting *.deb files to /vyos/packages
cp -v linux*.deb /vyos/packages
cd /vyos
## and create an ISO image, you may want to add other parameters, see the docu
sudo ./build-vyos-image generic --build-type release --architecture amd64
Mi intent is to use the Internet access via WIFI. This is a secondary line in case the primary router fails. So, the Vyos routers need access to a WiFi device. Is there a USB WiFi adapter that will work with the kernel in the Vyos device?
I would say that in almost all cases you will be better off with a dedicated access point. They are cheap and will be more capable than VyOS’s wifi support.
VyOS documentation: WLAN/WIFI - Wireless LAN
I did not find a reference to a hardware device on the page.
Read the Build VyOS / Docker part and start with building an image yourself.