mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Add support for building a device tree for sandbox's CONFIG_OF_HOSTFILE option to make it easier to use device tree with sandbox. This adjusts the Makefile to build a u-boot.dtb file which can be passed to sandbox U-Boot with: ./u-boot -d u-boot.dtb Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			21 lines
		
	
	
		
			274 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			274 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/dts-v1/;
 | 
						|
 | 
						|
/ {
 | 
						|
	triangle {
 | 
						|
		compatible = "demo-shape";
 | 
						|
		colour = "cyan";
 | 
						|
		sides = <3>;
 | 
						|
		character = <83>;
 | 
						|
	};
 | 
						|
	square {
 | 
						|
		compatible = "demo-shape";
 | 
						|
		colour = "blue";
 | 
						|
		sides = <4>;
 | 
						|
	};
 | 
						|
	hexagon {
 | 
						|
		compatible = "demo-simple";
 | 
						|
		colour = "white";
 | 
						|
		sides = <6>;
 | 
						|
	};
 | 
						|
};
 |