diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2014-02-17 22:43:07 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2014-02-17 22:43:07 +0000 |
| commit | c54999ee14c29ae21e7c0457cf70098e6ab180eb (patch) | |
| tree | 2d941cca9e7f0cffa8fc3cd94aec9a931444bb52 /sys/modules/usb | |
| parent | 050e7f09368c96dc9cdee81995fcb82e735211ce (diff) | |
MFC r258036:
Add IDs for the ASIX 88179 and 88178A USB to GigE adapters.
MFC r258331:
Import the axge(4) driver for the ASIX AX88178A and AX88179 USB Ethernet
adapters. Both devices support Gigabit Ethernet and USB 2.0, and the AX88179
supports USB 3.0.
MFC r258617 (by lwhsu):
Also note to add xhci(4) to kernel configuration to utilize USB 3.0
MFC r258618 (by lwhsu):
Mention axge(4)
Notes
svn path=/stable/9/; revision=262138
Diffstat (limited to 'sys/modules/usb')
| -rw-r--r-- | sys/modules/usb/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/usb/axge/Makefile | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/sys/modules/usb/Makefile b/sys/modules/usb/Makefile index fe9bccd11822..260daed8f06e 100644 --- a/sys/modules/usb/Makefile +++ b/sys/modules/usb/Makefile @@ -36,7 +36,7 @@ SUBDIR += ${_rum} run ${_uath} upgt usie ural ${_zyd} ${_urtw} SUBDIR += atp uhid ukbd ums udbp ufm uep wsp SUBDIR += ucom u3g uark ubsa ubser uchcom ucycom ufoma uftdi ugensa uipaq ulpt \ umct umcs umodem umoscom uplcom uslcom uvisor uvscom -SUBDIR += uether aue axe cdce cue ${_kue} mos rue udav uhso ipheth +SUBDIR += uether aue axe axge cdce cue ${_kue} mos rue udav uhso ipheth SUBDIR += usfs umass urio SUBDIR += quirk template diff --git a/sys/modules/usb/axge/Makefile b/sys/modules/usb/axge/Makefile new file mode 100644 index 000000000000..bad4b94a5593 --- /dev/null +++ b/sys/modules/usb/axge/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/usb/net + +KMOD= if_axge +SRCS+= if_axge.c usbdevs.h +SRCS+= bus_if.h device_if.h miibus_if.h usb_if.h \ + opt_bus.h opt_inet.h opt_usb.h + +.include <bsd.kmod.mk> |
