blob: b356f37891cbe469ecf4dba5bfb734b951be8963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _IPXE_EFI_PXE_H
#define _IPXE_EFI_PXE_H
/** @file
*
* EFI PXE base code protocol
*/
#include <ipxe/efi/efi.h>
#include <ipxe/netdevice.h>
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
extern int efi_pxe_install ( EFI_HANDLE handle, struct net_device *netdev );
extern void efi_pxe_uninstall ( EFI_HANDLE handle );
#endif /* _IPXE_EFI_PXE_H */
|