diff options
author | Peng Fan <peng.fan@nxp.com> | 2019-08-22 07:42:33 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-10-08 16:35:58 +0200 |
commit | 7b86cd4274e66e0336b6da1399a0e7a7a4a1581e (patch) | |
tree | 1f74a40b5274a1a19b8415adb856c3cc8a3e12eb /arch/arm/mach-imx/imx8/Makefile | |
parent | b152584283088b79b967f361e673c744d3ef325b (diff) |
imx8: support parsing i.MX8 Container file
Add parsing i.MX8 Container file support, this is to let
SPL could load images in a container file to destination address.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch/arm/mach-imx/imx8/Makefile')
-rw-r--r-- | arch/arm/mach-imx/imx8/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/imx8/Makefile b/arch/arm/mach-imx/imx8/Makefile index 92b5c56acb..5f62b2826e 100644 --- a/arch/arm/mach-imx/imx8/Makefile +++ b/arch/arm/mach-imx/imx8/Makefile @@ -5,3 +5,7 @@ # obj-y += cpu.o iomux.o misc.o + +ifdef CONFIG_SPL_BUILD +obj-$(CONFIG_SPL_LOAD_IMX_CONTAINER) += parse-container.o +endif |