summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-10-07 14:27:24 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-10-07 14:27:24 +0200
commit2443c7a6f12bc330fcf88949786703d358f2f771 (patch)
tree97ebe4f57b46ae8414dd0fe170582c019aa0edff /commands
parentabb402d0083df191958638f0e5dd1a506b2ac2f8 (diff)
downloadbarebox-2443c7a6f12bc330fcf88949786703d358f2f771.tar.gz
barebox-2443c7a6f12bc330fcf88949786703d358f2f771.tar.xz
export symbols
Diffstat (limited to 'commands')
-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:"