Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb278feb authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman
Browse files

MIPS: fix allmodconfig build with latest mkimage



With the latest mkimage from U-Boot 2021.04+ the allmodconfig build
fails. 822564cd ("MIPS: generic: Update node names to avoid unit
addresses") was applied for similar build failure, but it was not
applied to 'arch/mips/generic/board-ocelot_pcb123.its.S' as that was
removed from upstream when the patch was applied.

Fixes: 822564cd ("MIPS: generic: Update node names to avoid unit addresses")
Cc: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarSudip Mukherjee <sudipm.mukherjee@gmail.com>
Reviewed-by: default avatarNathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 43bdd14a
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
/ {
	images {
		fdt@ocelot_pcb123 {
		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 {
			hash {
				algo = "sha1";
			};
		};
	};

	configurations {
		conf@ocelot_pcb123 {
		conf-ocelot_pcb123 {
			description = "Ocelot Linux kernel";
			kernel = "kernel@0";
			fdt = "fdt@ocelot_pcb123";
			kernel = "kernel";
			fdt = "fdt-ocelot_pcb123";
		};
	};
};