commit | 81a7caa4eb9b771d7ac68f4a97e2cc2bf88e776b | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Wed Feb 26 10:23:40 2020 -0500 |
committer | Tom Rini <trini@konsulko.com> | Wed Mar 11 11:00:51 2020 -0400 |
tree | 797e7b9b37b5e07379d03167040063509d96a401 | |
parent | d2912dab31101558560f81dec8e84915ecbe2b62 [diff] |
configs: Drop '$(ARCH)' usage in CONFIG_SPL_LDSCRIPT In a few boards we had overridden, intentionally, the value used for CONFIG_SPL_LDSCRIPT. However, rather than using the ARCH value (arm) they used the $(ARCH) variable in make. This doesn't help really, so switch to a hard-coded value. Signed-off-by: Tom Rini <trini@konsulko.com> --- Changes in v2: - New patch