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 288B

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