mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Sometimes it is useful to specify the default alignment for all entries in a section, such as when word-alignment is necessary, for example. It is tedious and error-prone to specify this individually for each section. Add a property to control this for a section. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			31 lines
		
	
	
		
			297 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			297 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| / {
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	binman {
 | |
| 		align-default = <8>;
 | |
| 		u-boot {
 | |
| 		};
 | |
| 
 | |
| 		u-boot-align {
 | |
| 			type = "u-boot";
 | |
| 		};
 | |
| 
 | |
| 		section {
 | |
| 			align = <32>;
 | |
| 			u-boot {
 | |
| 			};
 | |
| 
 | |
| 			u-boot-nodtb {
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		u-boot-nodtb {
 | |
| 		};
 | |
| 	};
 | |
| };
 |