summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2020-07-15 16:10:17 +0300
committerTom Rini <trini@konsulko.com>2020-07-17 17:47:19 +0300
commit4d288dcd4c8059a3d6dbaeb8a27030366eb27d89 (patch)
tree37b1f6d18f5b388afdd2f43c2b7bd21be4b9c9e2
parent892d4617357db355bf847ca37dd76cf946727ec2 (diff)
downloadu-boot-4d288dcd4c8059a3d6dbaeb8a27030366eb27d89.tar.xz
doc: fit: Write hex address as hex instead of int
When update_uboot.its is used directly there is syntax error for no reason. Error report: mkimage -f update_uboot.its boot Error: update_uboot.its:18.12-13 syntax error FATAL ERROR: Unable to parse input tree mkimage: Can't read boot.tmp: Invalid argument Fixes: 4bae90904b69 ("Automatic software update from TFTP server") Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r--doc/uImage.FIT/update_uboot.its2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/uImage.FIT/update_uboot.its b/doc/uImage.FIT/update_uboot.its
index c2ac2663e6..aec4826008 100644
--- a/doc/uImage.FIT/update_uboot.its
+++ b/doc/uImage.FIT/update_uboot.its
@@ -15,7 +15,7 @@
data = /incbin/("./u-boot.bin");
compression = "none";
type = "firmware";
- load = <FFFC0000>;
+ load = <0xFFFC0000>;
hash-1 {
algo = "sha1";
};