You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sanboot.h 386B

123456789101112131415161718
  1. #ifndef _GPXE_SANBOOT_H
  2. #define _GPXE_SANBOOT_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. #include <gpxe/tables.h>
  5. struct sanboot_protocol {
  6. const char *prefix;
  7. int ( * boot ) ( const char *root_path );
  8. };
  9. #define SANBOOT_PROTOCOLS \
  10. __table ( struct sanboot_protocol, "sanboot_protocols" )
  11. #define __sanboot_protocol __table_entry ( SANBOOT_PROTOCOLS, 01 )
  12. #endif /* _GPXE_SANBOOT_H */