summaryrefslogtreecommitdiff
path: root/common/spl
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2017-02-16 17:18:40 (GMT)
committerTom Rini <trini@konsulko.com>2017-03-18 18:28:51 (GMT)
commitae9b57b50b2dfad6fefb37af95991362f79abcd3 (patch)
tree357a94ee73b9178a6075068c212bcac04b4f9fbd /common/spl
parent722a6b1741bacd4ba36fb89906dbb8bf696d70a7 (diff)
downloadu-boot-fsl-qoriq-ae9b57b50b2dfad6fefb37af95991362f79abcd3.tar.xz
Kconfig: Disable non-FIT SPL loading for TI secure devices
Non-FIT SPL image loading support should be disabled for TI secure devices as the image handlers for those image types do not follow our secure boot flow. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl')
-rw-r--r--common/spl/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index d974271..6752b5c 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -17,7 +17,7 @@ config SPL_RAW_IMAGE_SUPPORT
bool "Support SPL loading and booting of RAW images"
depends on SPL
default n if (ARCH_MX6 && (SPL_MMC_SUPPORT || SPL_SATA_SUPPORT))
- default y
+ default y if !TI_SECURE_DEVICE
help
SPL will support loading and booting a RAW image when this option
is y. If this is not set, SPL will move on to other available
@@ -25,7 +25,7 @@ config SPL_RAW_IMAGE_SUPPORT
config SPL_LEGACY_IMAGE_SUPPORT
bool "Support SPL loading and booting of Legacy images"
- default y
+ default y if !TI_SECURE_DEVICE
help
SPL will support loading and booting Legacy images when this option
is y. If this is not set, SPL will move on to other available