build.ck 851 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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
  9. Abstract:
  10. This directory contains drivers related to General Purpose Input/Output.
  11. Author:
  12. Evan Green 4-Aug-2015
  13. Environment:
  14. Kernel
  15. --*/
  16. function build() {
  17. assert(((arch == "armv7") || (arch == "armv6")), "Unexpected architecture");
  18. gpio_drivers = [
  19. "//drivers/gpio/broadcom/bc27:bc27gpio",
  20. "//drivers/gpio/rockchip/rk32:rk32gpio",
  21. "//drivers/gpio/ti/omap4:om4gpio",
  22. ];
  23. entries = group("gpio_drivers", gpio_drivers);
  24. return entries;
  25. }
  26. return build();