build.ck 652 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*++
  2. Copyright (c) 2012 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Null
  5. Abstract:
  6. This module implements a null driver that simply passes all IRPs down.
  7. It serves as an excellent skeleton for starting a new driver, and also
  8. provides a handy stub driver for instances where all functionality is
  9. provided by bus drivers or other mechanisms.
  10. Author:
  11. Evan Green 25-Sep-2012
  12. Environment:
  13. Kernel
  14. --*/
  15. function build() {
  16. name = "null";
  17. sources = [
  18. "null.c"
  19. ];
  20. drv = {
  21. "label": name,
  22. "inputs": sources,
  23. };
  24. entries = driver(drv);
  25. return entries;
  26. }
  27. return build();