1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ################################################################################
- #
- # Copyright (c) 2013 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Module Name:
- #
- # USB
- #
- # Abstract:
- #
- # This directory contains Universal Serial Bus (USB) related drivers,
- # including the USB core support library, host controller implementations,
- # generic device class drivers, and specific USB device drivers.
- #
- # Author:
- #
- # Evan Green 13-Jan-2013
- #
- # Environment:
- #
- # Kernel
- #
- ################################################################################
- USB_HOST_CONTROLLERS = am3usb \
- dwhci \
- ehci \
- uhci \
- USB_CLASS_DRIVERS = usbcomp \
- usbhub \
- usbmass \
- USB_DEVICE_DRIVERS = onering \
- usbkbd \
- DIRS = usbcore \
- $(USB_CLASS_DRIVERS) \
- $(USB_DEVICE_DRIVERS) \
- $(USB_HOST_CONTROLLERS) \
- include $(SRCROOT)/os/minoca.mk
- $(USB_HOST_CONTROLLERS) $(USB_CLASS_DRIVERS) $(USB_DEVICE_DRIVERS): usbcore
|