From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7D741C6379F for ; Fri, 13 Jan 2023 23:12:45 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DA2FB85582; Sat, 14 Jan 2023 00:12:42 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="ExG36Y8r"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id F3AF9855AF; Sat, 14 Jan 2023 00:12:40 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 92A9785376 for ; Sat, 14 Jan 2023 00:12:38 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 90FD46237A; Fri, 13 Jan 2023 23:12:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CFF93C433EF; Fri, 13 Jan 2023 23:12:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673651556; bh=Pn28dQbdN3BQU+vGJ153LXt3DIsk4VGkMHkatO0Senk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ExG36Y8r96wj+93TQkANBWSLv7g58a6dIzfaHvSJbUYD6ZumYX7ofKoWfwp6xKyKW nbmQhR3yvX6Izg9cyo1YYqPI6sR2hWkTGmk1Axv7vgOZw9rBN4vSUtMTNOMo8+b3gg R7WmDZYtT1/K+E2rXXaUbp0sJpBykGo5P95xtZk4RGFjq+sDXThBiw6BmZl31GI1iB +zuiqbm83I3sGKltiyl6nx871mDLOp2YVP19OCJ+MBWGgrfA1Ns3EM6jp7RdbC6IWb FzjI+q2bU/ZgHATa3+B7uujNR1wTwLWVpA31kc6woYrTLWmL7r7/dorVIgQizQUAhu hUA7yYW0J0STA== Received: by pali.im (Postfix) id C5B6A84F; Sat, 14 Jan 2023 00:12:32 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Heiko Schocher , Tom Rini Cc: u-boot@lists.denx.de Subject: [PATCH v2 u-boot 1/3] powerpc/mpc85xx: socrates: Use u-boot.dtb instead of dts/dt.dtb Date: Sat, 14 Jan 2023 00:11:21 +0100 Message-Id: <20230113231123.27427-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20221228200437.30971-1-pali@kernel.org> References: <20221228200437.30971-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean binman uses DTB file u-boot.dtb for building u-boot binaries. So use same DTB file for u-boot runtime on socrates board, instead of dts/dt.dtb file. Note that u-boot.dtb is generated by simple Makefile rule which copies dts/dt.dtb to u-boot.dtb. So both files are same. Signed-off-by: Pali Rohár --- arch/powerpc/dts/socrates-u-boot.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/dts/socrates-u-boot.dtsi b/arch/powerpc/dts/socrates-u-boot.dtsi index 14a7c245dc46..92e89a11bc01 100644 --- a/arch/powerpc/dts/socrates-u-boot.dtsi +++ b/arch/powerpc/dts/socrates-u-boot.dtsi @@ -9,7 +9,7 @@ pad-byte = <0xff>; // Place dtb one sector before u-boot-nodtb.bin blob { - filename = "dts/dt.dtb"; + filename = "u-boot.dtb"; }; u-boot-nodtb { filename = "u-boot-nodtb.bin"; -- 2.20.1