diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-26 20:18:20 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-26 20:18:20 -0400 |
commit | c18b103657d9541305a45a1fb21f979c317fba49 (patch) | |
tree | 3d7e8425a499e3df0c90c34e3e5b60660cfca3d7 /board/renesas/eagle/Makefile | |
parent | 696f02d99b41190786b17ad28316a0cd45792c2c (diff) | |
parent | b5900a58caf0416355ccab4dc9da55c9a388a953 (diff) | |
download | u-boot-c18b103657d9541305a45a1fb21f979c317fba49.tar.gz |
Merge branch 'master' of git://git.denx.de/u-boot-sh
- Gen3 PCIe driver + enablement on Salvator-X platforms.
- Gen3 recovery SPL used to reload ATF/OpTee/U-Boot instead of minimon.
- SDHI HS400 fixes ported from latest BSP and datasheet.
Diffstat (limited to 'board/renesas/eagle/Makefile')
-rw-r--r-- | board/renesas/eagle/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/renesas/eagle/Makefile b/board/renesas/eagle/Makefile index dffa295404..062c46ba24 100644 --- a/board/renesas/eagle/Makefile +++ b/board/renesas/eagle/Makefile @@ -6,4 +6,8 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y := eagle.o +ifdef CONFIG_SPL_BUILD +obj-y := ../rcar-common/gen3-spl.o +else +obj-y := eagle.o ../rcar-common/common.o +endif |