Commit 378e413f authored by Gregory CLEMENT's avatar Gregory CLEMENT Committed by Thomas Bogendoerfer
Browse files

MIPS: mscc: build FIT image for Luton



Luton now has already an u-boot port so let's build FIT images.

Signed-off-by: default avatarGregory CLEMENT <gregory.clement@bootlin.com>
Acked-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 72bc5e8b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -78,6 +78,14 @@ config FIT_IMAGE_FDT_OCELOT
	  from Microsemi in the FIT kernel image.
	  This requires u-boot on the platform.

config FIT_IMAGE_FDT_LUTON
	bool "Include FDT for Microsemi Luton development platforms"
	select SOC_VCOREIII
	help
	  Enable this to include the FDT for the Luton development platforms
	  from Microsemi in the FIT kernel image.
	  This requires u-boot on the platform.

config BOARD_INGENIC
	bool "Support boards based on Ingenic SoCs"
	select MACH_INGENIC_GENERIC
+1 −0
Original line number Diff line number Diff line
@@ -20,4 +20,5 @@ its-y := vmlinux.its.S
its-$(CONFIG_FIT_IMAGE_FDT_BOSTON)	+= board-boston.its.S
its-$(CONFIG_FIT_IMAGE_FDT_NI169445)	+= board-ni169445.its.S
its-$(CONFIG_FIT_IMAGE_FDT_OCELOT)	+= board-ocelot.its.S
its-$(CONFIG_FIT_IMAGE_FDT_LUTON)	+= board-luton.its.S
its-$(CONFIG_FIT_IMAGE_FDT_XILFPGA)	+= board-xilfpga.its.S
+23 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
/ {
	images {
		fdt@luton_pcb091 {
			description = "MSCC Luton PCB091 Device Tree";
			data = /incbin/("boot/dts/mscc/luton_pcb091.dtb");
			type = "flat_dt";
			arch = "mips";
			compression = "none";
			hash@0 {
				algo = "sha1";
			};
		};
	};

	configurations {
		pcb091 {
			description = "Luton Linux kernel";
			kernel = "kernel@0";
			fdt = "fdt@luton_pcb091";
		};
	};
};