dfd1e98eac
Kawasaki LSI KL5KUSB101B chip, including the LinkSys USB10T, the Entrega NET-USB-E45, the Peracom USB Ethernet Adapter, the 3Com 3c19250 and the ADS Technologies USB-10BT. This device is 10mbs half-duplex only, so there's miibus or ifmedia support. This device also requires firmware to be loaded into it, however KLSI allows redistribution of the firmware images (I specifically asked about this; they said it was ok). Special thanks to Annelise Anderson for getting me in touch with KLSI (eventually) and thanks to KLSI for providing the necessary programming info. Highlights: - Add driver files to /sys/dev/usb - update usbdevs and regenerate attendate files - update usb_quirks.c - Update HARDWARE.TXT and RELNOTES.TXT for i386 and alpha - Update LINT, GENERIC and others for i386, alpha and pc98 - Add man page - Add module - Update sysinstall and userconfig.c
22 lines
608 B
Makefile
22 lines
608 B
Makefile
# $FreeBSD$
|
|
|
|
# XXX present but broken: ip_mroute_mod pcic
|
|
|
|
SUBDIR= aha amr aue ccd cd9660 coda dc fdesc fxp if_disc if_ef if_ppp \
|
|
if_sl if_tun ipfilter ipfw joy kernfs kue md mfs mii mlx msdos \
|
|
ncp netgraph nfs ntfs nullfs \
|
|
nwfs portal procfs rl sf sis sk ste ti tl \
|
|
ugen uhid ukbd ulpt umapfs umass umodem ums union usb vn vr wb xl
|
|
|
|
# XXX some of these can move to the general case when de-i386'ed
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SUBDIR+=bktr coff fpu gnufpu ibcs2 linux splash streams \
|
|
svr4 syscons vesa vinum wi
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
SUBDIR+=osf1
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|