summaryrefslogtreecommitdiff
path: root/gpxe/src/include/gpxe/sanboot.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/include/gpxe/sanboot.h')
-rw-r--r--gpxe/src/include/gpxe/sanboot.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gpxe/src/include/gpxe/sanboot.h b/gpxe/src/include/gpxe/sanboot.h
new file mode 100644
index 00000000..ea26a356
--- /dev/null
+++ b/gpxe/src/include/gpxe/sanboot.h
@@ -0,0 +1,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 */