david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/etherboot.h
Michael Brown 8406115834 [build] Rename gPXE to iPXE
Access to the gpxe.org and etherboot.org domains and associated
resources has been revoked by the registrant of the domain.  Work
around this problem by renaming project from gPXE to iPXE, and
updating URLs to match.

Also update README, LOG and COPYRIGHTS to remove obsolete information.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-04-19 23:43:39 +01:00

45 lines
830 B
C

#ifndef ETHERBOOT_H
#define ETHERBOOT_H
/*
* Standard includes that we always want
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <strings.h>
#include <console.h>
#include <ipxe/timer.h>
#include <ipxe/if_arp.h>
#include <ipxe/if_ether.h>
typedef unsigned long Address;
/*
* IMPORTANT!!!!!!!!!!!!!!
*
* Everything below this point is cruft left over from older versions
* of Etherboot. Do not add *anything* below this point. Things are
* gradually being moved to individual header files.
*
*/
/* Link configuration time in tenths of a second */
#ifndef VALID_LINK_TIMEOUT
#define VALID_LINK_TIMEOUT 100 /* 10.0 seconds */
#endif
/*
* Local variables:
* c-basic-offset: 8
* End:
*/
#endif /* ETHERBOOT_H */