diff options
author | Vladimir Zapolskiy <vz@mleia.com> | 2016-11-28 00:15:26 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-02 21:32:47 -0500 |
commit | 9ec4a67ef342b2dbcecc9721f5369f022ea59b26 (patch) | |
tree | 3610595bf25ea7b7988f76f5848040a7d8c0d04c /board/renesas/MigoR | |
parent | 3f8b5391ec531adec6fa7602aeb8894b7a23d44d (diff) | |
download | u-boot-9ec4a67ef342b2dbcecc9721f5369f022ea59b26.tar.gz u-boot-9ec4a67ef342b2dbcecc9721f5369f022ea59b26.tar.xz u-boot-9ec4a67ef342b2dbcecc9721f5369f022ea59b26.zip |
sh: place board lowlevel_init code in the beginning of .text
Reference lowlevel_init of all supported SH2A/SH3/SH4/SH4A boards
from a shared linker script, the lowlevel_init function will be called
by a relative address.
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/renesas/MigoR')
-rw-r--r-- | board/renesas/MigoR/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/renesas/MigoR/Makefile b/board/renesas/MigoR/Makefile index b4691a1165..0686f9749e 100644 --- a/board/renesas/MigoR/Makefile +++ b/board/renesas/MigoR/Makefile @@ -10,4 +10,4 @@ # SPDX-License-Identifier: GPL-2.0+ obj-y := migo_r.o -obj-y += lowlevel_init.o +extra-y += lowlevel_init.o |