build.ck 497 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*++
  2. Copyright (c) 2012 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. PCI
  5. Abstract:
  6. This module implements the Peripheral Component Interconnect (PCI)
  7. driver.
  8. Author:
  9. Evan Green 16-Sep-2012
  10. Environment:
  11. Kernel
  12. --*/
  13. function build() {
  14. name = "pci";
  15. sources = [
  16. "msi.c",
  17. "pci.c",
  18. "rootbus.c"
  19. ];
  20. drv = {
  21. "label": name,
  22. "inputs": sources,
  23. };
  24. entries = driver(drv);
  25. return entries;
  26. }
  27. return build();