mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	PCB120 and PCB123 are both development boards based on Microsemi Ocelot so let's use the same fitImage for both. Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Quentin Schulz <quentin.schulz@bootlin.com> Signed-off-by: Paul Burton <paul.burton@mips.com> Patchwork: https://patchwork.linux-mips.org/patch/20871/ Cc: ralf@linux-mips.org Cc: jhogan@kernel.org Cc: robh+dt@kernel.org Cc: mark.rutland@arm.com Cc: davem@davemloft.net Cc: andrew@lunn.ch Cc: f.fainelli@gmail.com Cc: allan.nielsen@microchip.com Cc: linux-mips@linux-mips.org Cc: devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: netdev@vger.kernel.org Cc: thomas.petazzoni@bootlin.com Cc: antoine.tenart@bootlin.com
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			806 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			806 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
 | 
						|
/ {
 | 
						|
	images {
 | 
						|
		fdt@ocelot_pcb123 {
 | 
						|
			description = "MSCC Ocelot PCB123 Device Tree";
 | 
						|
			data = /incbin/("boot/dts/mscc/ocelot_pcb123.dtb");
 | 
						|
			type = "flat_dt";
 | 
						|
			arch = "mips";
 | 
						|
			compression = "none";
 | 
						|
			hash@0 {
 | 
						|
				algo = "sha1";
 | 
						|
			};
 | 
						|
		};
 | 
						|
 | 
						|
		fdt@ocelot_pcb120 {
 | 
						|
			description = "MSCC Ocelot PCB120 Device Tree";
 | 
						|
			data = /incbin/("boot/dts/mscc/ocelot_pcb120.dtb");
 | 
						|
			type = "flat_dt";
 | 
						|
			arch = "mips";
 | 
						|
			compression = "none";
 | 
						|
			hash@0 {
 | 
						|
				algo = "sha1";
 | 
						|
			};
 | 
						|
		};
 | 
						|
	};
 | 
						|
 | 
						|
	configurations {
 | 
						|
		conf@ocelot_pcb123 {
 | 
						|
			description = "Ocelot Linux kernel";
 | 
						|
			kernel = "kernel@0";
 | 
						|
			fdt = "fdt@ocelot_pcb123";
 | 
						|
		};
 | 
						|
 | 
						|
		conf@ocelot_pcb120 {
 | 
						|
			description = "Ocelot Linux kernel";
 | 
						|
			kernel = "kernel@0";
 | 
						|
			fdt = "fdt@ocelot_pcb120";
 | 
						|
		};
 | 
						|
	};
 | 
						|
};
 |