aboutsummaryrefslogtreecommitdiff
path: root/common/spl/Kconfig
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2023-10-14 16:47:45 -0400
committerTom Rini <trini@konsulko.com>2023-10-17 20:50:52 -0400
commit12b3339070bcab746355647a6aae7498f28c4add (patch)
tree52d5be93e9e388e681164ff7a928caea9fa1d574 /common/spl/Kconfig
parentab12179b3e9fa8a9c54f9cd5ad6b2c0c185a2191 (diff)
downloadu-boot-12b3339070bcab746355647a6aae7498f28c4add.zip
u-boot-12b3339070bcab746355647a6aae7498f28c4add.tar.gz
u-boot-12b3339070bcab746355647a6aae7498f28c4add.tar.bz2
Move i.MX8 container image loading support to common/spl
To facilitate testing loading i.MX8 container images, move the parse-container code to common/spl. Signed-off-by: Sean Anderson <seanga2@gmail.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r--common/spl/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 4632359..ad574a6 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -330,6 +330,20 @@ config SPL_LEGACY_IMAGE_CRC_CHECK
If disabled, Legacy images are booted if the image magic and size
are correct, without further integrity checks.
+config SPL_LOAD_IMX_CONTAINER
+ bool "Enable SPL loading and booting of i.MX8 Containers"
+ depends on SPL
+ help
+ Support booting U-Boot from an i.MX8 container image. If you are not
+ using i.MX8, say 'n'.
+
+config IMX_CONTAINER_CFG
+ string "i.MX8 Container config file"
+ depends on SPL && SPL_LOAD_IMX_CONTAINER
+ help
+ Specify the cfg file for generating the container image which will be
+ loaded by SPL.
+
config SPL_SYS_MALLOC_SIMPLE
bool "Only use malloc_simple functions in the SPL"
help