12345678910111213141516171819202122232425262728293031323334353637383940 |
- ################################################################################
- #
- # Copyright (c) 2016 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:
- #
- # BCM2709 DMA
- #
- # Abstract:
- #
- # This module implements support for the Broadcom 2709 DMA controller.
- #
- # Author:
- #
- # Chris Stevens 12-Feb-2016
- #
- # Environment:
- #
- # Kernel
- #
- ################################################################################
- BINARY = dmab2709.drv
- BINARYTYPE = so
- BINPLACE = bin
- OBJS = dmab2709.o \
- DYNLIBS = $(BINROOT)/kernel \
- $(BINROOT)/dma.drv \
- include $(SRCROOT)/os/minoca.mk
|