diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-01-28 06:53:48 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-01-29 20:59:08 +0900 |
commit | 9c572684b4bbf776954420fd34f8ec707f631d67 (patch) | |
tree | cd1f715cdcbbf4830ac526a5072420f28acccb20 /arch/arm/mach-uniphier/Makefile | |
parent | 513cfaccc8ee166ac2e29e380f86173483ae71c8 (diff) | |
download | u-boot-imx-9c572684b4bbf776954420fd34f8ec707f631d67.zip u-boot-imx-9c572684b4bbf776954420fd34f8ec707f631d67.tar.gz u-boot-imx-9c572684b4bbf776954420fd34f8ec707f631d67.tar.bz2 |
ARM: uniphier: compile board data only for SPL
Now U-Boot proper need not get the uniphier_boards array. Compile
it only for SPL.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier/Makefile')
-rw-r--r-- | arch/arm/mach-uniphier/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-uniphier/Makefile b/arch/arm/mach-uniphier/Makefile index abfdccc..166b41f 100644 --- a/arch/arm/mach-uniphier/Makefile +++ b/arch/arm/mach-uniphier/Makefile @@ -4,6 +4,7 @@ ifdef CONFIG_SPL_BUILD +obj-y += boards.o obj-y += spl_board_init.o obj-y += memconf.o obj-y += bcu/ @@ -21,7 +22,6 @@ obj-y += pinctrl-glue.o endif -obj-y += boards.o obj-y += soc-info.o obj-y += boot-mode/ obj-y += clk/ |