build.ck 797 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*++
  2. Copyright (c) 2014 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. SD OMAP4
  9. Abstract:
  10. This module implements the OMAP4 SD controller driver.
  11. Author:
  12. Evan Green 16-Mar-2014
  13. Environment:
  14. Kernel
  15. --*/
  16. function build() {
  17. name = "sdomap4";
  18. sources = [
  19. "i2c.c",
  20. "pmic.c",
  21. "sdomap4.c"
  22. ];
  23. dynlibs = [
  24. "//drivers/sd/core:sd"
  25. ];
  26. drv = {
  27. "label": name,
  28. "inputs": sources + dynlibs,
  29. };
  30. entries = driver(drv);
  31. return entries;
  32. }
  33. return build();