9
0
Fork 0

uimage: introduce UIMAGE Kconfig symbol

Both the uimage command and the bootm command need uImage support, so
add a Kconfig symbol for it to be able to select it properly.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2012-07-05 21:13:34 +02:00
parent 32fe6b09c2
commit a6ce65b121
3 changed files with 7 additions and 2 deletions

View File

@ -349,6 +349,7 @@ config CMD_BOOTM
tristate
default y
select CRC32
select UIMAGE
select UNCOMPRESS
select FILETYPE
select GLOBALVAR
@ -397,6 +398,7 @@ config CMD_BOOTM_AIMAGE
Support using Android Images.
config CMD_UIMAGE
select UIMAGE
tristate
prompt "uimage"
help

View File

@ -47,6 +47,9 @@ config BINFMT
bool
select FILETYPE
config UIMAGE
bool
config GLOBALVAR
bool

View File

@ -24,8 +24,8 @@ obj-$(CONFIG_CONSOLE_FULL) += console.o
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-$(CONFIG_UIMAGE) += image.o
obj-$(CONFIG_UIMAGE) += uimage.o
obj-y += startup.o
obj-y += misc.o
obj-y += memsize.o