summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-03-12 01:11:14 +0300
committerTom Rini <trini@konsulko.com>2020-03-17 01:54:18 +0300
commit2c59412a9f230d5a6020f72edcc2c6ac772ebbb8 (patch)
tree9041ed7a8226efbed72f3f0aba1a6150119f81dd
parent38fec8de5f4bf04f0824fda99ac482c0e64157c4 (diff)
downloadu-boot-2c59412a9f230d5a6020f72edcc2c6ac772ebbb8.tar.xz
mach-davinci: Hard-code the default SPL_LDSCRIPT path
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 <lokeshvutla@ti.com> Suggested-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r--arch/arm/mach-davinci/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig
index 8a81c07881..6eca8db6d5 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