Simon Glass | c44aa61 | 2023-06-23 13:22:04 +0100 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | Automatic software update |
| 4 | ========================= |
| 5 | |
| 6 | Make sure the flashing addresses ('load' prop) is correct for your board! |
| 7 | |
| 8 | :: |
| 9 | |
| 10 | /dts-v1/; |
| 11 | |
| 12 | / { |
| 13 | description = "Automatic U-Boot update"; |
| 14 | #address-cells = <1>; |
| 15 | |
| 16 | images { |
| 17 | update-1 { |
| 18 | description = "U-Boot binary"; |
| 19 | data = /incbin/("./u-boot.bin"); |
| 20 | compression = "none"; |
| 21 | type = "firmware"; |
| 22 | load = <0xFFFC0000>; |
| 23 | hash-1 { |
| 24 | algo = "sha1"; |
| 25 | }; |
| 26 | }; |
| 27 | }; |
| 28 | }; |