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.

imgmgmt.h 520B

12345678910111213141516171819202122
  1. #ifndef _USR_IMGMGMT_H
  2. #define _USR_IMGMGMT_H
  3. /** @file
  4. *
  5. * Image management
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <ipxe/image.h>
  10. extern int imgdownload ( struct uri *uri, unsigned long timeout,
  11. struct image **image );
  12. extern int imgdownload_string ( const char *uri_string, unsigned long timeout,
  13. struct image **image );
  14. extern int imgacquire ( const char *name, unsigned long timeout,
  15. struct image **image );
  16. extern void imgstat ( struct image *image );
  17. #endif /* _USR_IMGMGMT_H */