summaryrefslogtreecommitdiff
path: root/gpxe/src/include/gpxe/sanboot.h
blob: ea26a3562fc5fa92b6b61a9a2012c7c73a54b496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */