mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
9c572684b4
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>
33 lines
580 B
Makefile
33 lines
580 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
obj-y += boards.o
|
|
obj-y += spl_board_init.o
|
|
obj-y += memconf.o
|
|
obj-y += bcu/
|
|
|
|
else
|
|
|
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
|
|
obj-y += dram_init.o
|
|
obj-y += board_init.o
|
|
obj-$(CONFIG_BOARD_LATE_INIT) += board_late_init.o
|
|
obj-y += reset.o
|
|
|
|
obj-$(CONFIG_MICRO_SUPPORT_CARD) += sbc/ micro-support-card.o
|
|
obj-y += pinctrl-glue.o
|
|
|
|
endif
|
|
|
|
obj-y += soc-info.o
|
|
obj-y += boot-mode/
|
|
obj-y += clk/
|
|
obj-y += dram/
|
|
|
|
obj-$(CONFIG_DEBUG_UART_UNIPHIER) += debug-uart/
|
|
|
|
obj-$(CONFIG_CPU_V7) += arm32/
|
|
obj-$(CONFIG_ARM64) += arm64/
|