1// SPDX-License-Identifier: GPL-2.0+ 2 3/dts-v1/; 4/ { 5 binman: binman { 6 multiple-images; 7 8 template_1: template-1 { 9 section { 10 phandle1: my-blob.bin { 11 filename = "my-blob.bin"; 12 type = "blob-ext"; 13 }; 14 }; 15 }; 16 template_2: template-2 { 17 section { 18 ti-secure { 19 content = <&phandle2>; 20 keyfile = "key.pem"; 21 }; 22 phandle2: my-blob.bin { 23 filename = "my-blob.bin"; 24 type = "blob-ext"; 25 }; 26 }; 27 }; 28 template_3: template-3 { 29 section { 30 phandle3: my-blob.bin { 31 filename = "my-blob.bin"; 32 type = "blob-ext"; 33 }; 34 }; 35 }; 36 37 file1 { 38 insert-template = <&template_1>; 39 }; 40 41 file2 { 42 insert-template = <&template_2>; 43 }; 44 45 file3 { 46 insert-template = <&template_3>; 47 }; 48 }; 49}; 50