lwfinger / rtl8192cu

Repository for vendor driver for RTL8192CU

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do I install this?

xDidntPot opened this issue · comments

commented

I've run sudo make

make[1]: Entering directory '/usr/lib/modules/5.16.5-1-MANJARO/build'
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_cmd.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_security.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_debug.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_io.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_ioctl_query.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_ioctl_set.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_ieee80211.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_mlme.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_mlme_ext.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_wlan_util.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_pwrctrl.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_rf.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_recv.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_sta_mgt.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_ap.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_xmit.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_p2p.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_tdls.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_br_ext.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_iol.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_sreset.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/core/rtw_efuse.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/hal_intf.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/hal_com.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/dm.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_hal_init.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_phycfg.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_rf6052.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_dm.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_rxdesc.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_cmd.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/usb_halinit.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192cu_led.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192cu_xmit.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192cu_recv.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/usb_ops_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_sreset.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/rtl8192c_xmit.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/hal/Hal8192CUHWImg.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/osdep_service.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/os_intfs.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/usb_intf.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/usb_ops_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/ioctl_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/xmit_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/mlme_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/recv_linux.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/ioctl_cfg80211.o
  CC [M]  /home/didntpot/Documents/rtl8192cu/os_dep/rtw_android.o
  LD [M]  /home/didntpot/Documents/rtl8192cu/rtl8192cu.o
  MODPOST /home/didntpot/Documents/rtl8192cu/Module.symvers
  CC [M]  /home/didntpot/Documents/rtl8192cu/rtl8192cu.mod.o
  LD [M]  /home/didntpot/Documents/rtl8192cu/rtl8192cu.ko
  BTF [M] /home/didntpot/Documents/rtl8192cu/rtl8192cu.ko
make[1]: Leaving directory '/usr/lib/modules/5.16.5-1-MANJARO/build'

And after that I'm clueless...

The next step is 'sudo make install' and 'sudo modprobe -v rtl8192cu' to make it last through a reboot, or 'sudo insmod rtl8192cu.ko' for a temporary test. When your kernel changes, you will need to repeat the make steps. If you do a 'git pull', you will get README.md, which covers part of this.

commented

Ight thanks.