build.ck 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*++
  2. Copyright (c) 2016 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. EDMA3
  9. Abstract:
  10. This module implements support for the TI EDMA 3 controller.
  11. Author:
  12. Evan Green 1-Feb-2016
  13. Environment:
  14. Kernel
  15. --*/
  16. from menv import driver;
  17. function build() {
  18. var drv;
  19. var dynlibs;
  20. var entries;
  21. var name = "edma3";
  22. var sources;
  23. sources = [
  24. "edma3.c"
  25. ];
  26. dynlibs = [
  27. "drivers/dma/core:dma"
  28. ];
  29. drv = {
  30. "label": name,
  31. "inputs": sources + dynlibs,
  32. };
  33. entries = driver(drv);
  34. return entries;
  35. }