Compiling Kernel undefined reference to 'ath_hal_computetxtime'

Hi folks, I'm here to show you how to fix this problem during the kernel compilation:
Code:
undefined reference to 'ath_hal_computetxtime'

Inside your kernel configuration add these lines below:

Code:
device ath 
device ath_ral
and rerun the command [cmd=]make buildkernel KERNCONF=MYKERNEL[/cmd] and after that [cmd=]make buildinstall KERNCONF=MYKERNEL[/cmd]

See ya! If you have questions, let me know!
 
buildinstall is a non-existent target, I assume you mean installkernel. Those targets can be combined into make kernel KERNCONF=MYKERNEL by the way.
 
Back
Top