aboutsummaryrefslogtreecommitdiff
path: root/src/include/ipxe/image.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2021-01-20 18:03:16 +0000
committerMichael Brown <mcb30@ipxe.org>2021-01-22 18:34:47 +0000
commit99ac69b8a9a48207913e98ac6b357c029b0eef81 (patch)
tree22f88f44671cb1fc29fe5ac47b50b5fa54b34586 /src/include/ipxe/image.h
parentae73fb5aa0c8a39d6dc688d856483610ebe12682 (diff)
downloadipxe-99ac69b8a9a48207913e98ac6b357c029b0eef81.zip
ipxe-99ac69b8a9a48207913e98ac6b357c029b0eef81.tar.gz
ipxe-99ac69b8a9a48207913e98ac6b357c029b0eef81.tar.bz2
[image] Provide image_set_data()
Extract part of the logic in initrd_init() to a standalone function image_set_data(). Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/image.h')
-rw-r--r--src/include/ipxe/image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/image.h b/src/include/ipxe/image.h
index 2e7eb4c..4c38776 100644
--- a/src/include/ipxe/image.h
+++ b/src/include/ipxe/image.h
@@ -175,6 +175,7 @@ extern struct image * alloc_image ( struct uri *uri );
extern int image_set_uri ( struct image *image, struct uri *uri );
extern int image_set_name ( struct image *image, const char *name );
extern int image_set_cmdline ( struct image *image, const char *cmdline );
+extern int image_set_data ( struct image *image, userptr_t data, size_t len );
extern int register_image ( struct image *image );
extern void unregister_image ( struct image *image );
struct image * find_image ( const char *name );