Add errfile definition for new e1000.c
[gpxe.git] / src / include / etherboot.h
blob8d658194f3a9e0a3458f1f3458d988d97bc8579f
1 #ifndef ETHERBOOT_H
2 #define ETHERBOOT_H
4 /*
5 * Standard includes that we always want
7 */
9 #include <stddef.h>
10 #include <stdint.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <unistd.h>
14 #include <strings.h>
15 #include <latch.h>
16 #include <console.h>
17 #include <gpxe/if_arp.h>
18 #include <gpxe/if_ether.h>
20 typedef unsigned long Address;
23 * IMPORTANT!!!!!!!!!!!!!!
25 * Everything below this point is cruft left over from older versions
26 * of Etherboot. Do not add *anything* below this point. Things are
27 * gradually being moved to individual header files.
31 /* Link configuration time in tenths of a second */
32 #ifndef VALID_LINK_TIMEOUT
33 #define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */
34 #endif
37 * Local variables:
38 * c-basic-offset: 8
39 * End:
42 #endif /* ETHERBOOT_H */