mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	The tests don't currently cover all the different property types. Add a new test which checks each property type in turn, to make sure each has the correct type and value. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			24 lines
		
	
	
		
			374 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			374 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/dts-v1/;
 | 
						|
 | 
						|
/ {
 | 
						|
	#address-cells = <1>;
 | 
						|
	#size-cells = <1>;
 | 
						|
 | 
						|
	binman {
 | 
						|
		sort-by-pos;
 | 
						|
		end-at-4gb;
 | 
						|
		size = <16>;
 | 
						|
		intel-me {
 | 
						|
			filename = "me.bin";
 | 
						|
			pos-unset;
 | 
						|
			intval = <3>;
 | 
						|
			intarray = <5 6>;
 | 
						|
			byteval = [08];
 | 
						|
			bytearray = [01 23 34];
 | 
						|
			longbytearray = [09 0a 0b 0c];
 | 
						|
			stringval = "message2";
 | 
						|
			stringarray = "another", "multi-word", "message";
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |