Skip to content
Snippets Groups Projects
Commit 99e3a2cd authored by Jonas Karlman's avatar Jonas Karlman Committed by Simon Glass
Browse files

rockchip: Add sha256 hash to FIT images


Add sha256 hash to FIT images when CONFIG_SPL_FIT_SIGNATURE=y.

Signed-off-by: default avatarJonas Karlman <jonas@kwiboo.se>
Reviewed-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
parent 00b3d53f
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,11 @@
entry = <CONFIG_TEXT_BASE>;
u-boot-nodtb {
};
#ifdef CONFIG_SPL_FIT_SIGNATURE
hash {
algo = "sha256";
};
#endif
};
@atf-SEQ {
......@@ -65,6 +70,11 @@
atf-bl31 {
};
#ifdef CONFIG_SPL_FIT_SIGNATURE
hash {
algo = "sha256";
};
#endif
};
@tee-SEQ {
fit,operation = "split-elf";
......@@ -80,12 +90,22 @@
tee-os {
optional;
};
#ifdef CONFIG_SPL_FIT_SIGNATURE
hash {
algo = "sha256";
};
#endif
};
@fdt-SEQ {
description = "fdt-NAME";
compression = "none";
type = "flat_dt";
#ifdef CONFIG_SPL_FIT_SIGNATURE
hash {
algo = "sha256";
};
#endif
};
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment