diff options
author | Vladimir Zapolskiy <vz@mleia.com> | 2016-11-28 00:15:25 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-02 21:32:46 -0500 |
commit | 3f8b5391ec531adec6fa7602aeb8894b7a23d44d (patch) | |
tree | 82865fbe3afc5f93cb4cd0bb1a363a48be5aedbc /board/renesas/sh7753evb/Makefile | |
parent | e2099d78c89428b23173e98d1d5fba4af3109fc2 (diff) |
sh4: use single u-boot linker script for all boards
Three supported SH4/SH4A boards with the bootloader image stored on
SPI flash have own flavour of a linker script, in turn they are equal
among each other. The only difference is that the text from
lowlevel_init.o is placed right after start.o, which makes sense.
Note that .bss section is not marked as NOLOAD, because for about
10 years this is a default option of a GNU linker, either the
attribute is found or not the resulting image file is the same.
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/renesas/sh7753evb/Makefile')
-rw-r--r-- | board/renesas/sh7753evb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/renesas/sh7753evb/Makefile b/board/renesas/sh7753evb/Makefile index f7c8e949f9..4293142262 100644 --- a/board/renesas/sh7753evb/Makefile +++ b/board/renesas/sh7753evb/Makefile @@ -4,4 +4,4 @@ # SPDX-License-Identifier: GPL-2.0+ obj-y := sh7753evb.o spi-boot.o -obj-y += lowlevel_init.o +extra-y += lowlevel_init.o |