Added newer platform files.

The build can now be done with fine-grain conditions on how to determine
drivers, platforms, arch, subarch etc.
This commit is contained in:
Bahadir Balban
2009-09-11 14:29:24 +03:00
parent 942865e6fc
commit 8ffd4537ea
9 changed files with 72 additions and 86 deletions

View File

@@ -11,6 +11,8 @@ for name, val in symbols:
src_local.append(glob.glob("timer/sp804/*.c"))
if "CONFIG_DRIVER_IRQ_PL190" == name:
src_local.append(glob.glob("irq/pl190/*.c"))
if "CONFIG_DRIVER_IRQ_GIC" == name:
src_local.append(glob.glob("irq/gic/*.c"))
obj = env.Object(src_local)