mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 19:48:19 +00:00 
			
		
		
		
	Add support for writing symbols and determining the assumed position of binaries inside a mkimage image. This is useful as an example for other entry types which might want to do the same thing. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			28 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			272 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| / {
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	binman {
 | |
| 		u-boot-dtb {
 | |
| 		};
 | |
| 
 | |
| 		mkimage {
 | |
| 			args = "-n test -T script";
 | |
| 
 | |
| 			u-boot-spl {
 | |
| 			};
 | |
| 
 | |
| 			u-boot-spl2 {
 | |
| 				type = "u-boot-spl";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		u-boot {
 | |
| 		};
 | |
| 	};
 | |
| };
 |