summaryrefslogtreecommitdiffstats
path: root/common/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-12-06 08:40:44 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-12-15 10:59:35 +0100
commit390249968c4eeaceddd26a1cdeca5728f5b87b18 (patch)
treed6d3aa663c33320aa8c9ba9ed26bfa2b4b681376 /common/Makefile
parent296cd8d6380f775d0f7b59bd78d3421327ebbe9e (diff)
downloadbarebox-390249968c4eeaceddd26a1cdeca5728f5b87b18.tar.gz
barebox-390249968c4eeaceddd26a1cdeca5728f5b87b18.tar.xz
reimplement uImage code
Provide a new API for accessing uImages which makes it easy for commands to open images, verify them, load to (free) sdram regions and show information about uImages. - We now do not load the image to malloced space anymore. - The data in the header is now stored in cpu native endianess after uimage_open which makes it easy to access the header data. - uImage can be loaded to dynamically allocated sdram regions. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Makefile')
-rw-r--r--common/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile
index 237c6b0430..e02650ba4c 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -22,6 +22,7 @@ obj-$(CONFIG_CONSOLE_SIMPLE) += console_simple.o
obj-$(CONFIG_DIGEST) += digest.o
obj-$(CONFIG_ENVIRONMENT_VARIABLES) += env.o
obj-$(CONFIG_CMD_BOOTM) += image.o
+obj-$(CONFIG_CMD_BOOTM) += uimage.o
obj-y += startup.o
obj-y += misc.o
obj-y += memsize.o