summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h')
-rw-r--r--contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h b/contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h
new file mode 100644
index 0000000..fd06316
--- /dev/null
+++ b/contrib/syslinux-4.02/gpxe/src/include/gpxe/sanboot.h
@@ -0,0 +1,20 @@
+#ifndef _GPXE_SANBOOT_H
+#define _GPXE_SANBOOT_H
+
+FILE_LICENCE ( GPL2_OR_LATER );
+
+#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 )
+
+extern int keep_san ( void );
+
+#endif /* _GPXE_SANBOOT_H */