summaryrefslogtreecommitdiffstats
path: root/commands/bootm.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bootm.c')
-rw-r--r--commands/bootm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/bootm.c b/commands/bootm.c
index 4a0d00daec..e943934a45 100644
--- a/commands/bootm.c
+++ b/commands/bootm.c
@@ -234,6 +234,7 @@ int relocate_image(struct image_handle *handle, void *load_address)
return 0;
}
+EXPORT_SYMBOL(relocate_image);
struct image_handle *map_image(const char *filename, int verify)
{
@@ -303,6 +304,7 @@ err_out:
free(handle);
return NULL;
}
+EXPORT_SYMBOL(map_image);
void unmap_image(struct image_handle *handle)
{
@@ -310,6 +312,7 @@ void unmap_image(struct image_handle *handle)
free(handle->data);
free(handle);
}
+EXPORT_SYMBOL(unmap_image);
#ifdef CONFIG_OF_FLAT_TREE
#define OPT_OFTREE "o:"