summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorClement Leger <cleger@kalray.eu>2020-06-12 09:10:35 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-06-15 16:15:17 +0200
commit76c161b367ad78ed6212f46f547b1781939b6cc2 (patch)
tree210f763d130aca458f8d787835c01a70a5f26ec0 /common/Kconfig
parentaff0f38d5e702286cc2560c6b3f6a5fc24b7f557 (diff)
downloadbarebox-76c161b367ad78ed6212f46f547b1781939b6cc2.tar.gz
barebox-76c161b367ad78ed6212f46f547b1781939b6cc2.tar.xz
common: bootm: add support for elf file loading
This will allows elf loader to directly have an elf file available. Thus filetype_elf bootm handlers will be able to use standard bootm functions and data. Signed-off-by: Clement Leger <cleger@kalray.eu> Tested-by: Oleksij Rempel <o.rempel@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index ac282d8955..d75b43dfce 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -597,6 +597,14 @@ config BOOTM_AIMAGE
help
Support using Android Images.
+config BOOTM_ELF
+ bool
+ depends on BOOTM
+ select ELF
+ prompt "elf loading support"
+ help
+ Add support to load elf file with bootm.
+
config BOOTM_FITIMAGE
bool
prompt "FIT image support"