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/gpxe/sanboot.h

15 lines
288 B
C

#ifndef _GPXE_SANBOOT_H
#define _GPXE_SANBOOT_H
#include <gpxe/tables.h>
struct sanboot_protocol {
const char *prefix;
int ( * boot ) ( const char *root_path );
};
#define __sanboot_protocol \
__table ( struct sanboot_protocol, sanboot_protocols, 01 )
#endif /* _GPXE_SANBOOT_H */