Bartlomiej Sieka | e273e9f | 2008-10-01 15:26:31 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Example Automatic software update file. |
| 3 | */ |
| 4 | / { |
| 5 | description = "Automatic software updates: kernel, ramdisk, FDT"; |
| 6 | #address-cells = <1>; |
| 7 | |
| 8 | images { |
| 9 | update@1 { |
| 10 | description = "Linux kernel binary"; |
| 11 | data = /incbin/("./vmlinux.bin.gz"); |
| 12 | compression = "none"; |
| 13 | type = "firmware"; |
| 14 | load = <FF700000>; |
| 15 | hash@1 { |
| 16 | algo = "sha1"; |
| 17 | }; |
| 18 | }; |
| 19 | update@2 { |
| 20 | description = "Ramdisk image"; |
| 21 | data = /incbin/("./ramdisk_image.gz"); |
| 22 | compression = "none"; |
| 23 | type = "firmware"; |
| 24 | load = <FF8E0000>; |
| 25 | hash@1 { |
| 26 | algo = "sha1"; |
| 27 | }; |
| 28 | }; |
| 29 | |
| 30 | update@3 { |
| 31 | description = "FDT blob"; |
| 32 | data = /incbin/("./blob.fdt"); |
| 33 | compression = "none"; |
| 34 | type = "firmware"; |
| 35 | load = <FFAC0000>; |
| 36 | hash@1 { |
| 37 | algo = "sha1"; |
| 38 | }; |
| 39 | }; |
| 40 | }; |
| 41 | }; |