Bartlomiej Sieka | 4bae909 | 2008-10-01 15:26:31 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Automatic software update for U-Boot |
| 3 | * Make sure the flashing addresses ('load' prop) is correct for your board! |
| 4 | */ |
Ira W. Snyder | 824d829 | 2009-11-04 13:37:59 -0800 | [diff] [blame] | 5 | |
| 6 | /dts-v1/; |
| 7 | |
Bartlomiej Sieka | 4bae909 | 2008-10-01 15:26:31 +0200 | [diff] [blame] | 8 | / { |
| 9 | description = "Automatic U-Boot update"; |
| 10 | #address-cells = <1>; |
| 11 | |
| 12 | images { |
| 13 | update@1 { |
| 14 | description = "U-Boot binary"; |
| 15 | data = /incbin/("./u-boot.bin"); |
| 16 | compression = "none"; |
| 17 | type = "firmware"; |
| 18 | load = <FFFC0000>; |
| 19 | hash@1 { |
| 20 | algo = "sha1"; |
| 21 | }; |
| 22 | }; |
| 23 | }; |
| 24 | }; |