123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*++
- Copyright (c) 2014 Minoca Corp. All Rights Reserved
- Module Name:
- Platform
- Abstract:
- This directory builds platform support drivers.
- Author:
- Evan Green 4-Dec-2014
- Environment:
- Kernel
- --*/
- function build() {
- if ((arch == "armv7") || (arch == "armv6")) {
- platform_drivers = [
- "//drivers/plat/goec:goec",
- "//drivers/plat/rockchip/rk808:rk808",
- "//drivers/plat/ti/am3soc:am3soc",
- "//drivers/plat/ti/tps65217:tps65217"
- ];
- } else if (arch == "x86") {
- platform_drivers = [
- "//drivers/plat/quark/qrkhostb:qrkhostb"
- ];
- }
- entries = group("platform_drivers", platform_drivers);
- return entries;
- }
- return build();
|