mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	In some cases it is useful to have an entry overlap with another in a section, either to update the contents within a blob, or to add an entry to the fdtmap that covers only part of the blob. Add support for this. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			25 lines
		
	
	
		
			228 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			228 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
/ {
 | 
						|
	#address-cells = <1>;
 | 
						|
	#size-cells = <1>;
 | 
						|
 | 
						|
	binman {
 | 
						|
		section {
 | 
						|
			u-boot {
 | 
						|
			};
 | 
						|
 | 
						|
			null {
 | 
						|
				offset = <1>;
 | 
						|
				size = <2>;
 | 
						|
				overlap;
 | 
						|
			};
 | 
						|
		};
 | 
						|
 | 
						|
		fmap {
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |