tools: image-host: fix wrong return value
authorMing Liu <liu.ming50@gmail.com>
Mon, 31 May 2021 07:04:51 +0000 (09:04 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 14 Jul 2021 20:57:35 +0000 (16:57 -0400)
commit7c39799dec2cafbe631a35d2c17d080e73741db5
tree907923cedc5cb1fb26c136a93f8b21d84f672095
parent9c70237f19ab2c9084128b84c491c5e8d102008d
tools: image-host: fix wrong return value

The return value '-ENOSPC' of fit_set_timestamp function does not match
the caller fit_image_write_sig's expection which is '-FDT_ERR_NOSPACE'.

Fix it by not calling fit_set_timestamp, but call fdt_setprop instead.

This fixes a following mkimage error:
| Can't write signature for 'signature@1' signature node in
| 'conf@imx6ull-colibri-wifi-eval-v3.dtb' conf node: <unknown error>
| mkimage Can't add hashes to FIT blob: -1

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Tested-by: Igor Opaniuk <igor.opaniuk@foundries.io>
tools/image-host.c