diff options
| author | Fabio Estevam <[email protected]> | 2021-07-26 16:01:48 -0300 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2021-08-09 14:46:50 +0200 |
| commit | 82679f94e72cc51fcf6a452c2823acdf7f389ead (patch) | |
| tree | bf5342e88058d798d5118bd14194ab27b2fedf87 | |
| parent | 249ee657e620829b0ebe119936d0e82c83534b45 (diff) | |
warp: Use the correct symbol for CONFIG_IMX_HAB
The intention of commit d714a75fd4dc ("imx: replace CONFIG_SECURE_BOOT
with CONFIG_IMX_HAB") was to convert from CONFIG_SECURE_BOOT to
CONFIG_IMX_HAB, but it replaced with an extra "_" character.
Fix it by using the correct CONFIG_IMX_HAB symbol.
Fixes: d714a75fd4dc ("imx: replace CONFIG_SECURE_BOOT with CONFIG_IMX_HAB")
Signed-off-by: Fabio Estevam <[email protected]>
| -rw-r--r-- | board/warp/imximage.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/warp/imximage.cfg b/board/warp/imximage.cfg index 619f6aa7b06..d952c6f2e9e 100644 --- a/board/warp/imximage.cfg +++ b/board/warp/imximage.cfg @@ -24,7 +24,7 @@ BOOT_FROM sd /* * Secure boot support */ -#ifdef CONFIG__IMX_HAB +#ifdef CONFIG_IMX_HAB CSF CONFIG_CSF_SIZE #endif |
