You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef ETHERBOOT_H
  2. #define ETHERBOOT_H
  3. /*
  4. * Standard includes that we always want
  5. *
  6. */
  7. FILE_LICENCE ( GPL2_OR_LATER );
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. #include <stdlib.h>
  11. #include <stdio.h>
  12. #include <unistd.h>
  13. #include <strings.h>
  14. #include <ipxe/console.h>
  15. #include <ipxe/timer.h>
  16. #include <ipxe/if_arp.h>
  17. #include <ipxe/if_ether.h>
  18. typedef unsigned long Address;
  19. /*
  20. * IMPORTANT!!!!!!!!!!!!!!
  21. *
  22. * Everything below this point is cruft left over from older versions
  23. * of Etherboot. Do not add *anything* below this point. Things are
  24. * gradually being moved to individual header files.
  25. *
  26. */
  27. /* Link configuration time in tenths of a second */
  28. #ifndef VALID_LINK_TIMEOUT
  29. #define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */
  30. #endif
  31. /*
  32. * Local variables:
  33. * c-basic-offset: 8
  34. * End:
  35. */
  36. #endif /* ETHERBOOT_H */