diff options
author | Marek Vasut | 2023-05-28 23:00:30 +0200 |
---|---|---|
committer | Tom Rini | 2023-06-24 13:47:02 -0400 |
commit | 6039e0edc8540bd2abee780549b260bdaf089168 (patch) | |
tree | 4e179f7c6962564dd11fba3d6bb551603b368457 /common/spl | |
parent | 6a412faea3dd0cb07c5fb19b9c01ab0bc73e3950 (diff) |
imx: hab: Simplify the mechanism
The current mechanism is unnecessarily complex. Simplify the whole mechanism
such that the entire fitImage is signed, IVT is placed at the end, followed
by CSF, and this entire bundle is also authenticated. This makes the signing
scripting far simpler.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'common/spl')
-rw-r--r-- | common/spl/spl_fit.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index c51482b3b65..730639f7562 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -27,10 +27,6 @@ struct spl_fit_info { int conf_node; /* FDT offset to selected configuration node */ }; -__weak void board_spl_fit_post_load(const void *fit) -{ -} - __weak ulong board_spl_fit_size_align(ulong size) { return size; @@ -829,8 +825,5 @@ int spl_load_simple_fit(struct spl_image_info *spl_image, spl_image->flags |= SPL_FIT_FOUND; - if (IS_ENABLED(CONFIG_IMX_HAB)) - board_spl_fit_post_load(ctx.fit); - return 0; } |