mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
22 lines
405 B
Text
22 lines
405 B
Text
|
/*
|
||
|
* Automatic software update for U-Boot
|
||
|
* Make sure the flashing addresses ('load' prop) is correct for your board!
|
||
|
*/
|
||
|
/ {
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|