From patchwork Wed Mar 11 22:11:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 243559 List-Id: U-Boot discussion From: trini at konsulko.com (Tom Rini) Date: Wed, 11 Mar 2020 18:11:14 -0400 Subject: [PATCHv2 4/8] mach-davinci: Hard-code the default SPL_LDSCRIPT path In-Reply-To: <20200311221118.4579-1-trini@konsulko.com> References: <20200311221118.4579-1-trini@konsulko.com> Message-ID: <20200311221118.4579-4-trini@konsulko.com> As there is only one linker script to use in this case, rather than use the BOARDDIR variable hard-code the path. Cc: Lokesh Vutla Suggested-by: Masahiro Yamada Signed-off-by: Tom Rini Reviewed-by: Lokesh Vutla Reviewed-by: Masahiro Yamada --- Changes in v2. - New patch --- arch/arm/mach-davinci/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index 8a81c078811d..6eca8db6d5ff 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -135,6 +135,6 @@ source "board/davinci/da8xxevm/Kconfig" source "board/lego/ev3/Kconfig" config SPL_LDSCRIPT - default "board/$(BOARDDIR)/u-boot-spl-da850evm.lds" + default "board/davinci/da8xxevm/u-boot-spl-da850evm.lds" endif