build.ck 900 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*++
  2. Copyright (c) 2013 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. ATL1c
  9. Abstract:
  10. This module implements a NIC driver for the Atheros ATL1C family
  11. (formerly Attansic L1).
  12. Author:
  13. Evan Green 18-Apr-2013
  14. Environment:
  15. Kernel
  16. --*/
  17. from menv import driver;
  18. function build() {
  19. var drv;
  20. var dynlibs;
  21. var entries;
  22. var name = "atl1c";
  23. var sources;
  24. sources = [
  25. "atl1c.c",
  26. "atl1chw.c"
  27. ];
  28. dynlibs = [
  29. "drivers/net/netcore:netcore"
  30. ];
  31. drv = {
  32. "label": name,
  33. "inputs": sources + dynlibs,
  34. };
  35. entries = driver(drv);
  36. return entries;
  37. }