diff options
| author | Tom Rini <[email protected]> | 2020-06-16 19:06:26 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-06-26 10:29:06 -0400 |
| commit | 7d80a9cd92cb6bc05b44ab101d3bda3b0ff880c4 (patch) | |
| tree | faac4f09770a1a5c3f10f43ee390aae28e889469 /arch | |
| parent | bba4c7f9523d50998c186c468427fb710197b209 (diff) | |
arm: imx: Finish migration of CONFIG_CSF_SIZE to Kconfig
While in most cases CSF_SIZE is handled via Kconfig we have some i.MX8M
platforms that set the size based on the now-renamed CONFIG_SECURE_BOOT
symbol. Update things so that CSF_SIZE itself depends on IMX_HAB being
enabled and provide the default value for i.MX8M family of parts.
Cc: Stefano Babic <[email protected]>
Cc: Fabio Estevam <[email protected]>
Cc: Ye Li <[email protected]>
Cc: NXP i.MX U-Boot Team <[email protected]>
Fixes: d714a75fd4dc ("imx: replace CONFIG_SECURE_BOOT with CONFIG_IMX_HAB")
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Stefano Babic <[email protected]>
Reviewed-by: Ye Li <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-imx/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 6c3fedf665d..1531d09f3be 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -52,6 +52,8 @@ config IMX_HAB config CSF_SIZE hex "Maximum size for Command Sequence File (CSF) binary" + depends on IMX_HAB + default 0x2000 if ARCH_IMX8M default 0x2060 help Define the maximum size for Command Sequence File (CSF) binary |
