From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew F. Davis Date: Thu, 16 Feb 2017 11:18:40 -0600 Subject: [U-Boot] [PATCH v6 3/3] Kconfig: Disable non-FIT SPL loading for TI secure devices In-Reply-To: <20170216171840.2009-1-afd@ti.com> References: <20170216171840.2009-1-afd@ti.com> Message-ID: <20170216171840.2009-4-afd@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kconfig b/Kconfig index 8504199493..e238b8076b 100644 --- a/Kconfig +++ b/Kconfig @@ -293,7 +293,7 @@ config SYS_TEXT_BASE config SPL_RAW_IMAGE_SUPPORT bool "Support SPL loading and booting of RAW images" - 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 @@ -301,7 +301,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 -- 2.11.0