mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
b8790ebeec
The DT spec demands a unit-address of a node name to match the "reg" property in that node. Newer dtc versions will throw warnings if this is not the case. Fix all occurences in the FIT image example files where this was not observed, to not give bad examples to the reader. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
24 lines
417 B
Text
24 lines
417 B
Text
/*
|
|
* Automatic software update for U-Boot
|
|
* Make sure the flashing addresses ('load' prop) is correct for your board!
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Automatic U-Boot update";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
update-1 {
|
|
description = "U-Boot binary";
|
|
data = /incbin/("./u-boot.bin");
|
|
compression = "none";
|
|
type = "firmware";
|
|
load = <FFFC0000>;
|
|
hash-1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
};
|