references by https://forum.odroid.com/viewtopic.php?t=34769 power by odroid
Download and install
apt update && apt upgrade && apt dist-upgrade
apt install git bc dkms
git clone --depth 1 https://github.com/whitebatman2/rtl8821CU.git
cd rtl8821CU/
export DRV_NAME=rtl8821CU
export DRV_VERSION=5.2.5.3
mkdir /usr/src/${DRV_NAME}-${DRV_VERSION}
git archive master | sudo tar -x -C /usr/src/${DRV_NAME}-${DRV_VERSION}
Edit Makefile
vim /usr/src/rtl8821CU-5.2.5.3/Makefile
before
CONFIG_PLATFORM_I386_PC = y
CONFIG_PLATFORM_ARM_RPI = n
CONFIG_PLATFORM_ARM_RPI3 = n
after
CONFIG_PLATFORM_I386_PC = n
CONFIG_PLATFORM_ARM_RPI = n
CONFIG_PLATFORM_ARM_RPI3 = y
Hi, I'm trying following this steps but it seems that there are missing commands/steps.