summaryrefslogtreecommitdiffstats
path: root/src/core/image.c
diff options
context:
space:
mode:
authorMichael Brown2011-03-09 14:11:35 +0100
committerMichael Brown2011-03-09 14:11:35 +0100
commitd17a84a056a412f10a85985dc2c43b6fbedd0abd (patch)
treeb01b63c97beef21ee33ac541d86c600580c5a7ce /src/core/image.c
parent[monojob] Display percentage progress, if available (diff)
downloadipxe-d17a84a056a412f10a85985dc2c43b6fbedd0abd.tar.gz
ipxe-d17a84a056a412f10a85985dc2c43b6fbedd0abd.tar.xz
ipxe-d17a84a056a412f10a85985dc2c43b6fbedd0abd.zip
[image] Move the register_and_{select|boot}_image() functions to imgmgmt.c
These functions are used only as the "action" parameters to imgdownload() or imgfetch(), and so belong in imgmgmt.c rather than image.c Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/core/image.c')
-rw-r--r--src/core/image.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/core/image.c b/src/core/image.c
index 6caa0243..afb647d2 100644
--- a/src/core/image.c
+++ b/src/core/image.c
@@ -286,42 +286,3 @@ struct image * image_find_selected ( void ) {
}
return NULL;
}
-
-/**
- * Register and select an image
- *
- * @v image Executable image
- * @ret rc Return status code
- */
-int register_and_select_image ( struct image *image ) {
- int rc;
-
- if ( ( rc = register_image ( image ) ) != 0 )
- return rc;
-
- if ( ( rc = image_probe ( image ) ) != 0 )
- return rc;
-
- if ( ( rc = image_select ( image ) ) != 0 )
- return rc;
-
- return 0;
-}
-
-/**
- * Register and boot an image
- *
- * @v image Image
- * @ret rc Return status code
- */
-int register_and_boot_image ( struct image *image ) {
- int rc;
-
- if ( ( rc = register_and_select_image ( image ) ) != 0 )
- return rc;
-
- if ( ( rc = image_exec ( image ) ) != 0 )
- return rc;
-
- return 0;
-}