diff options
author | Andrew Davis <afd@ti.com> | 2022-07-15 11:34:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-04 15:32:20 -0400 |
commit | a0379c6fe3bfac4e0d7633830b9d23166f3edacf (patch) | |
tree | c26712f61aefb79013823f74645437d9331a666e /arch/arm/mach-k3/common.c | |
parent | e1ef04fb3e3a1eb417700e34510714be0277bee9 (diff) |
arm: mach-k3: security: Bypass image signing at runtime for GP devices
We can skip the image authentication check at runtime if the device is GP.
This reduces the delta between GP and HS U-Boot builds. End goal is
to re-unify the two build types into one build that can run on all
device types.
Signed-off-by: Andrew Davis <afd@ti.com>
Diffstat (limited to 'arch/arm/mach-k3/common.c')
-rw-r--r-- | arch/arm/mach-k3/common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-k3/common.c b/arch/arm/mach-k3/common.c index ac14975694..3962f2800f 100644 --- a/arch/arm/mach-k3/common.c +++ b/arch/arm/mach-k3/common.c @@ -290,9 +290,7 @@ void board_fit_image_post_process(const void *fit, int node, void **p_image, } #endif -#if IS_ENABLED(CONFIG_TI_SECURE_DEVICE) ti_secure_image_post_process(p_image, p_size); -#endif } #endif |