build.ck 747 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*++
  2. Copyright (c) 2014 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Platform
  5. Abstract:
  6. This directory builds platform support drivers.
  7. Author:
  8. Evan Green 4-Dec-2014
  9. Environment:
  10. Kernel
  11. --*/
  12. function build() {
  13. if ((arch == "armv7") || (arch == "armv6")) {
  14. platform_drivers = [
  15. "//drivers/plat/goec:goec",
  16. "//drivers/plat/rockchip/rk808:rk808",
  17. "//drivers/plat/ti/am3soc:am3soc",
  18. "//drivers/plat/ti/tps65217:tps65217"
  19. ];
  20. } else if (arch == "x86") {
  21. platform_drivers = [
  22. "//drivers/plat/quark/qrkhostb:qrkhostb"
  23. ];
  24. }
  25. entries = group("platform_drivers", platform_drivers);
  26. return entries;
  27. }
  28. return build();