build.ck 759 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*++
  2. Copyright (c) 2015 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. GPIO Core
  9. Abstract:
  10. This module implements the GPIO core support library. It provides
  11. generic support infrastructure for all GPIO drivers.
  12. Author:
  13. Evan Green 4-Aug-2015
  14. Environment:
  15. Kernel
  16. --*/
  17. function build() {
  18. name = "gpio";
  19. sources = [
  20. "gpio.c"
  21. ];
  22. drv = {
  23. "label": name,
  24. "inputs": sources,
  25. };
  26. entries = driver(drv);
  27. return entries;
  28. }
  29. return build();