mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	In some cases it is useful to generate a FIT which has a number of DTB images, selectable by configuration. Add support for this in binman, using a simple iterator and string substitution. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			55 lines
		
	
	
		
			839 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			839 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| / {
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	binman {
 | |
| 		u-boot {
 | |
| 		};
 | |
| 		fit {
 | |
| 			description = "test-desc";
 | |
| 			#address-cells = <1>;
 | |
| 
 | |
| 			images {
 | |
| 				kernel {
 | |
| 					description = "Vanilla Linux kernel";
 | |
| 					type = "kernel";
 | |
| 					arch = "ppc";
 | |
| 					os = "linux";
 | |
| 					compression = "gzip";
 | |
| 					load = <00000000>;
 | |
| 					entry = <00000000>;
 | |
| 					hash-1 {
 | |
| 						algo = "crc32";
 | |
| 					};
 | |
| 					hash-2 {
 | |
| 						algo = "sha1";
 | |
| 					};
 | |
| 					u-boot {
 | |
| 					};
 | |
| 				};
 | |
| 				@fdt-SEQ {
 | |
| 					description = "fdt-NAME.dtb";
 | |
| 					type = "flat_dt";
 | |
| 					compression = "none";
 | |
| 				};
 | |
| 			};
 | |
| 
 | |
| 			configurations {
 | |
| 				default = "config-1";
 | |
| 				@config-SEQ {
 | |
| 					description = "conf-NAME.dtb";
 | |
| 					firmware = "uboot";
 | |
| 					loadables = "atf";
 | |
| 					fdt = "fdt-SEQ";
 | |
| 				};
 | |
| 			};
 | |
| 		};
 | |
| 		u-boot-nodtb {
 | |
| 		};
 | |
| 	};
 | |
| };
 |