diff options
| author | Anshul Dalal <[email protected]> | 2025-10-24 13:44:04 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-03 11:52:29 -0600 |
| commit | 16f412679005e539401308bb075d4cdf87f01cb2 (patch) | |
| tree | 369b860247349a2ddf2a74baf75611430a6bbbdf /common | |
| parent | 2c16b803b82ace18077f08de58c6a079a94faa0f (diff) | |
spl: Kconfig: allow falcon mode for TI secure devices
Falcon mode was disabled for TI_SECURE_DEVICE at commit e95b9b4437bc
("ti_armv7_common: Disable Falcon Mode on HS devices") for older 32-bit
HS devices and but can now be enabled with the addition of
OS_BOOT_SECURE.
For secure boot, the kernel with x509 headers can be packaged in a fit
container (fitImage) signed with TIFS keys for authentication.
Signed-off-by: Anshul Dalal <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6027f24b1fe..9edea35e26a 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1202,7 +1202,7 @@ config SPL_ONENAND_SUPPORT config SPL_OS_BOOT bool "Activate Falcon Mode" - depends on !TI_SECURE_DEVICE + select SPL_OS_BOOT_SECURE if TI_SECURE_DEVICE depends on ARM || MICROBLAZE || PPC help Enable booting directly to an OS from SPL. |
