|
Running a kernel make looks like this:
1. Edit the config file (say its name is "NEWKERNEL"). These live in /usr/src/sys/i386/conf, assuming you are on intel i386 hardware.
2. "config NEWKERNEL" 3. "cd ../compile/NEWKERNEL" 4. "make clean" 5. "make depend" 6. "make" 7. "make install"
The reason I bring this all up is because it seems to me you may have left out #5.
I do not use wireless presently, but I do make kernels a lot, currently 5.3 and 5.4, so feel free to continue this dialog. The GENERIC config file I have has a section for Wireless NICs, that would be where I would look for ideas on supported hardware.
The NOTES file for 5.3 has the following comments:
# ath: Atheros a/b/g WiFi adapters (requires ath_hal and wlan) device ath device ath_hal # Atheros HAL (includes binary component) #device wlan # 802.11 layer
So it would appear that you need:
device ath device ath_hal device wlan
It seems to me that it may be one of those that you left out, also.
But it may be different in 6.0. OTOH, it would appear support has been around for a while, and there are no comments about it being broken, so it should work.
|