diff options
author | Tom Rini <trini@konsulko.com> | 2018-01-16 10:12:40 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-16 10:12:40 -0500 |
commit | da54e7e5a912565ab5979093044d65535f359f40 (patch) | |
tree | 6ffe4f72ebef60286dcae22cc1f7ed1b4fd009fb /doc/uImage.FIT/multi-with-fpga.its | |
parent | fdb6c3232f66bc9c07c30de87928506477ac4e63 (diff) | |
parent | ed772fe79bf4419320e997de94b3f93dbbe0838a (diff) |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'doc/uImage.FIT/multi-with-fpga.its')
-rw-r--r-- | doc/uImage.FIT/multi-with-fpga.its | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/uImage.FIT/multi-with-fpga.its b/doc/uImage.FIT/multi-with-fpga.its index 0cdb31fe91..47ee5760c4 100644 --- a/doc/uImage.FIT/multi-with-fpga.its +++ b/doc/uImage.FIT/multi-with-fpga.its @@ -10,31 +10,31 @@ #address-cells = <1>; images { - fdt@1 { + fdt-1 { description = "zc706"; data = /incbin/("/tftpboot/devicetree.dtb"); type = "flat_dt"; arch = "arm"; compression = "none"; load = <0x10000000>; - hash@1 { + hash-1 { algo = "md5"; }; }; - fpga@1 { + fpga { description = "FPGA"; data = /incbin/("/tftpboot/download.bit"); type = "fpga"; arch = "arm"; compression = "none"; load = <0x30000000>; - hash@1 { + hash-1 { algo = "md5"; }; }; - linux_kernel@1 { + linux_kernel { description = "Linux"; data = /incbin/("/tftpboot/zImage"); type = "kernel"; @@ -43,25 +43,25 @@ compression = "none"; load = <0x8000>; entry = <0x8000>; - hash@1 { + hash-1 { algo = "md5"; }; }; }; configurations { - default = "config@2"; - config@1 { + default = "config-2"; + config-1 { description = "Linux"; - kernel = "linux_kernel@1"; - fdt = "fdt@1"; + kernel = "linux_kernel"; + fdt = "fdt-1"; }; - config@2 { + config-2 { description = "Linux with fpga"; - kernel = "linux_kernel@1"; - fdt = "fdt@1"; - fpga = "fpga@1"; + kernel = "linux_kernel"; + fdt = "fdt-1"; + fpga = "fpga"; }; }; }; |