- Port ath(4) driver from FreeBSD, which supports various Atheros chip based
authorSepherosa Ziehau <sephe@dragonflybsd.org>
Thu, 13 Jul 2006 09:15:22 +0000 (09:15 +0000)
committerSepherosa Ziehau <sephe@dragonflybsd.org>
Thu, 13 Jul 2006 09:15:22 +0000 (09:15 +0000)
commit193b341de57d743a8cf62b7f229148076e0eea93
tree27e3b133694e2b34815665e5b674247a0e4f0056
parent2c77d93242b6e6a2f2686ea07037a03d3f83875c
- Port ath(4) driver from FreeBSD, which supports various Atheros chip based
  WiFi NIC
- Hook ath(4) into module building
- Add ath(4) and ath_hal(4) manpage
  With-help-from: swildner

Thank Sam Leffler and many other people for their greate work, also thank
Sam Leffler for his kind explaining about some caveats concerning ath_hal(4).

An early version of this driver, which works under DragonFly, was submitted by:
Andrew Atrens <atrens@nortel.com>
and was later modified to work on DragonFly 1.4.x and resubmitted by:
Adrian Michael Nida <nida@musc.edu>

Thank them for their submission.

Obtained-from: FreeBSD (mainly sam@freebsd.org)
Tested-by: many
Approved-by: dillon
23 files changed:
share/man/man4/Makefile
share/man/man4/ath.4 [new file with mode: 0644]
share/man/man4/ath_hal.4 [new file with mode: 0644]
sys/dev/netif/Makefile
sys/dev/netif/ath/Makefile [new file with mode: 0644]
sys/dev/netif/ath/Makefile.inc [new file with mode: 0644]
sys/dev/netif/ath/ath/Makefile [new file with mode: 0644]
sys/dev/netif/ath/ath/if_ath.c [new file with mode: 0644]
sys/dev/netif/ath/ath/if_ath_pci.c [new file with mode: 0644]
sys/dev/netif/ath/ath/if_athioctl.h [new file with mode: 0644]
sys/dev/netif/ath/ath/if_athrate.h [new file with mode: 0644]
sys/dev/netif/ath/ath/if_athvar.h [new file with mode: 0644]
sys/dev/netif/ath/hal/Makefile [new file with mode: 0644]
sys/dev/netif/ath/hal/ah_osdep.c.patch [new file with mode: 0644]
sys/dev/netif/ath/rate_amrr/Makefile [new file with mode: 0644]
sys/dev/netif/ath/rate_amrr/amrr.c [new file with mode: 0644]
sys/dev/netif/ath/rate_amrr/amrr.h [new file with mode: 0644]
sys/dev/netif/ath/rate_onoe/Makefile [new file with mode: 0644]
sys/dev/netif/ath/rate_onoe/onoe.c [new file with mode: 0644]
sys/dev/netif/ath/rate_onoe/onoe.h [new file with mode: 0644]
sys/dev/netif/ath/rate_sample/Makefile [new file with mode: 0644]
sys/dev/netif/ath/rate_sample/sample.c [new file with mode: 0644]
sys/dev/netif/ath/rate_sample/sample.h [new file with mode: 0644]