summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/sanboot.h
blob: 05a3ddf0fc40a95481571226a0c2dbd528df05cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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_PROTOCOLS \
	__table ( struct sanboot_protocol, "sanboot_protocols" )

#define __sanboot_protocol __table_entry ( SANBOOT_PROTOCOLS, 01 )

#endif /* _GPXE_SANBOOT_H */