mirror of
https://github.com/xcat2/xNBA.git
synced 2026-04-01 02:53:28 +00:00
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>
19 lines
297 B
C
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 */
|