mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +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;
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |