2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-04-01 02:53:28 +00:00
Files
xNBA/src/include/ipxe/downloader.h
Michael Brown 3c9c27b8e6 [image] Allow download job to complete before acting upon image
Allow the monojob controlling the download to complete before calling
register_image() and friends.  This allows the trailing "ok" from
monojob.c to be printed before the image starts executing (and
possibly printing output of its own).

Signed-off-by: Michael Brown <mcb30@ipxe.org>
2011-03-02 19:29:24 +00:00

19 lines
297 B
C

#ifndef _IPXE_DOWNLOADER_H
#define _IPXE_DOWNLOADER_H
/** @file
*
* Image downloader
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct interface;
struct image;
extern int create_downloader ( struct interface *job, struct image *image,
int type, ... );
#endif /* _IPXE_DOWNLOADER_H */