tools: fit_info: add END address of property

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: Icf988f3620d261f7742ee3db4e427e1783211f13
This commit is contained in:
Joseph Chen 2020-03-31 15:35:53 +08:00 committed by Jianhong Chen
parent 3a69273778
commit cdd8fbe39e
1 changed files with 1 additions and 0 deletions

View File

@ -102,6 +102,7 @@ int main(int argc, char **argv)
printf("NAME: %s\n", fit_get_name(fit_blob, nodeoffset, NULL));
printf("LEN: %d\n", len);
printf("OFF: %d\n", (int)(nodep - fit_blob));
printf("END: %d\n", (int)(nodep + len - fit_blob));
(void) munmap((void *)fit_blob, fsbuf.st_size);
close(ffd);