summaryrefslogtreecommitdiff
path: root/tools/image-host.c
diff options
context:
space:
mode:
authorTeddy Reed <teddy.reed@gmail.com>2018-06-09 11:45:20 -0400
committerTom Rini <trini@konsulko.com>2018-07-10 16:55:58 -0400
commit7346c1e192d63cd35f99c7e845e53c5d4d0bdc24 (patch)
tree465368f9de47a3f857f56f5c2b3b6b8169ed4fa9 /tools/image-host.c
parent72239fc85f3eda078547956608c063ab965e90e9 (diff)
vboot: Do not use hashed-strings offset
The hashed-strings signature property includes two uint32_t values. The first is unneeded as there should never be a start offset into the strings region. The second, the size, is needed because the added signature node appends to this region. See tools/image-host.c, where a static 0 value is used for the offset. Signed-off-by: Teddy Reed <teddy.reed@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/image-host.c')
-rw-r--r--tools/image-host.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/image-host.c b/tools/image-host.c
index 8e43671714..be2d59b7c0 100644
--- a/tools/image-host.c
+++ b/tools/image-host.c
@@ -135,6 +135,7 @@ static int fit_image_write_sig(void *fit, int noffset, uint8_t *value,
ret = fdt_setprop(fit, noffset, "hashed-nodes",
region_prop, region_proplen);
+ /* This is a legacy offset, it is unused, and must remain 0. */
strdata[0] = 0;
strdata[1] = cpu_to_fdt32(string_size);
if (!ret) {