diff options
author | Weongyo Jeong <weongyo@FreeBSD.org> | 2009-04-04 11:23:00 +0000 |
---|---|---|
committer | Weongyo Jeong <weongyo@FreeBSD.org> | 2009-04-04 11:23:00 +0000 |
commit | dc60165b73e4c4d829a2cb9fed5cce585e93d9a9 (patch) | |
tree | 8b2fbce8a0fa2518727f2da53f24794b7e8c2bc7 /sys/modules/usb/uath/Makefile | |
parent | 27457a80e2be53ad6026b6f31e0a25cac797475d (diff) |
Add uath(4) wireless USB driver for Atheros AR5005UG and AR5005UX
chipsets.
Reviewed by: sam
Notes
Notes:
svn path=/head/; revision=190688
Diffstat (limited to 'sys/modules/usb/uath/Makefile')
-rw-r--r-- | sys/modules/usb/uath/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/usb/uath/Makefile b/sys/modules/usb/uath/Makefile new file mode 100644 index 000000000000..a734dfcbb034 --- /dev/null +++ b/sys/modules/usb/uath/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/usb/wlan + +KMOD = if_uath +SRCS = if_uath.c if_uathvar.h if_uathreg.h \ + bus_if.h device_if.h \ + opt_bus.h opt_usb.h usb_if.h usbdevs.h + +.include <bsd.kmod.mk> |