mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	Some blobs are actually not necessary for the board to work correctly. Add a property to allow this to be indicated. Missing optional blobs do not cause a build failure. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			22 lines
		
	
	
		
			259 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			259 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| / {
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	binman {
 | |
| 		ok {
 | |
| 			type = "blob-ext";
 | |
| 			filename = "refcode.bin";
 | |
| 		};
 | |
| 
 | |
| 		missing {
 | |
| 			type = "blob-ext";
 | |
| 			filename = "missing.bin";
 | |
| 			optional;
 | |
| 		};
 | |
| 	};
 | |
| };
 |