Alexander Kochetkov | a730a28 | 2024-09-16 11:24:46 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | /dts-v1/; |
| 4 | |
| 5 | / { |
| 6 | #address-cells = <1>; |
| 7 | #size-cells = <1>; |
| 8 | |
| 9 | binman { |
| 10 | fit { |
| 11 | description = "test desc"; |
| 12 | #address-cells = <1>; |
| 13 | fit,fdt-list = "of-list"; |
| 14 | fit,sign; |
| 15 | |
| 16 | images { |
| 17 | u-boot { |
| 18 | description = "test u-boot"; |
| 19 | type = "standalone"; |
| 20 | arch = "arm64"; |
| 21 | os = "u-boot"; |
| 22 | compression = "none"; |
| 23 | load = <0x00000000>; |
| 24 | entry = <0x00000000>; |
| 25 | |
| 26 | u-boot-nodtb { |
| 27 | }; |
| 28 | }; |
| 29 | @atf-SEQ { |
| 30 | fit,operation = "split-elf"; |
| 31 | description = "test tf-a"; |
| 32 | type = "firmware"; |
| 33 | arch = "arm64"; |
| 34 | os = "arm-trusted-firmware"; |
| 35 | compression = "none"; |
| 36 | fit,load; |
| 37 | fit,entry; |
| 38 | fit,data; |
| 39 | |
| 40 | atf-bl31 { |
| 41 | }; |
| 42 | }; |
| 43 | @fdt-SEQ { |
| 44 | description = "test fdt"; |
| 45 | type = "flat_dt"; |
| 46 | compression = "none"; |
| 47 | }; |
| 48 | }; |
| 49 | |
| 50 | configurations { |
| 51 | default = "@conf-uboot-DEFAULT-SEQ"; |
| 52 | @conf-uboot-SEQ { |
| 53 | description = "uboot config"; |
| 54 | fdt = "fdt-SEQ"; |
| 55 | fit,firmware = "u-boot"; |
| 56 | fit,loadables; |
| 57 | }; |
| 58 | }; |
| 59 | }; |
| 60 | }; |
| 61 | }; |