aboutsummaryrefslogtreecommitdiff
path: root/src/include/usr
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2011-03-02 19:29:24 +0000
committerMichael Brown <mcb30@ipxe.org>2011-03-02 19:29:24 +0000
commit3c9c27b8e68f51ee008cdbf0a57ad3ab7483b631 (patch)
tree44bd9071244c8f1daacfa805de0bb107f97002b3 /src/include/usr
parent560cc637f9381f43557bcf6094a9e12c95278615 (diff)
downloadipxe-3c9c27b8e68f51ee008cdbf0a57ad3ab7483b631.zip
ipxe-3c9c27b8e68f51ee008cdbf0a57ad3ab7483b631.tar.gz
ipxe-3c9c27b8e68f51ee008cdbf0a57ad3ab7483b631.tar.bz2
[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>
Diffstat (limited to 'src/include/usr')
-rw-r--r--src/include/usr/imgmgmt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/usr/imgmgmt.h b/src/include/usr/imgmgmt.h
index 0beab51..64e5149 100644
--- a/src/include/usr/imgmgmt.h
+++ b/src/include/usr/imgmgmt.h
@@ -12,9 +12,9 @@ FILE_LICENCE ( GPL2_OR_LATER );
struct image;
extern int imgdownload ( struct image *image, struct uri *uri,
- int ( * image_register ) ( struct image *image ) );
+ int ( * action ) ( struct image *image ) );
extern int imgfetch ( struct image *image, const char *uri_string,
- int ( * image_register ) ( struct image *image ) );
+ int ( * action ) ( struct image *image ) );
extern int imgload ( struct image *image );
extern int imgexec ( struct image *image );
extern struct image * imgautoselect ( void );