Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. aptitude install linux-headers-amd64
  2. aptitude install linux-source-amd64
  3. tar xf linux-source-4.19.tar.xz
  4. cp ../linux-headers-4.19.0-4-amd64/Module.symvers .
  5. make oldconfig # aptitude install libelf-dev
  6. vim .config # check CONFIG_ATH9K=k
  7. make prepare # aptitude install libssl-dev
  8. make modules_prepare
  9. make SUBDIRS=scripts/mod
  10. make SUBDIRS=drivers/net/wireless/ath/ath9k modules
  11. cp drivers/net/wireless/ath/ath9k/ath9k_htc.ko /lib/modules/4.19.0-4-amd64/kernel/drivers/net/wireless/ath9k
  12. depmod
  13. modprobe ath9k_htc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement