build.ck 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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
  9. Abstract:
  10. This module implements the Secure Digital host controller driver. It
  11. can be used as a standalone driver or imported as a support library.
  12. Author:
  13. Evan Green 27-Feb-2014
  14. Environment:
  15. Kernel
  16. --*/
  17. function build() {
  18. name = "sd";
  19. sources = [
  20. "sd.c",
  21. "sdlib.c",
  22. "sdstd.c"
  23. ];
  24. drv = {
  25. "label": name,
  26. "inputs": sources,
  27. };
  28. entries = driver(drv);
  29. return entries;
  30. }
  31. return build();