blob: 464aa5168f34564e1945221c1a3d5a549a932cfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _IPXE_LINUX_DHCPARCH_H
#define _IPXE_LINUX_DHCPARCH_H
/** @file
*
* DHCP client architecture definitions
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
/*
* There are no specification-defined values for DHCP architecture for
* PXE clients running as Linux userspace applications. Pretend to be
* the equivalent EFI client.
*
*/
#include <ipxe/efi/dhcparch.h>
#endif /* _IPXE_LINUX_DHCPARCH_H */
|