mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-29 19:18:22 +00:00 
			
		
		
		
	The DT spec demands a unit-address of a node name to match the "reg" property in that node. Newer dtc versions will throw warnings if this is not the case. Fix all occurences in the FIT image example files where this was not observed, to not give bad examples to the reader. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			417 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			417 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /*
 | |
|  * Automatic software update for U-Boot
 | |
|  * Make sure the flashing addresses ('load' prop) is correct for your board!
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| / {
 | |
| 	description = "Automatic U-Boot update";
 | |
| 	#address-cells = <1>;
 | |
| 
 | |
| 	images {
 | |
| 		update-1 {
 | |
| 			description = "U-Boot binary";
 | |
| 			data = /incbin/("./u-boot.bin");
 | |
| 			compression = "none";
 | |
| 			type = "firmware";
 | |
| 			load = <FFFC0000>;
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| };
 |