mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 04:44:46 +00:00
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: 4bae90904b
("Automatic software update from TFTP server")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
892d461735
commit
4d288dcd4c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
data = /incbin/("./u-boot.bin");
|
data = /incbin/("./u-boot.bin");
|
||||||
compression = "none";
|
compression = "none";
|
||||||
type = "firmware";
|
type = "firmware";
|
||||||
load = <FFFC0000>;
|
load = <0xFFFC0000>;
|
||||||
hash-1 {
|
hash-1 {
|
||||||
algo = "sha1";
|
algo = "sha1";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue