projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'arm/master' into arm/next
[platform/kernel/u-boot.git]
/
doc
/
uImage.FIT
/
update_uboot.its
1
/*
2
* Automatic software update for U-Boot
3
* Make sure the flashing addresses ('load' prop) is correct for your board!
4
*/
5
/ {
6
description = "Automatic U-Boot update";
7
#address-cells = <1>;
8
9
images {
10
update@1 {
11
description = "U-Boot binary";
12
data = /incbin/("./u-boot.bin");
13
compression = "none";
14
type = "firmware";
15
load = <FFFC0000>;
16
hash@1 {
17
algo = "sha1";
18
};
19
};
20
};
21
};