mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
e8a9293295
Currently, only the CPU_ON function is supported. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
14 lines
257 B
Makefile
14 lines
257 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += lowlevel_init.o
|
|
obj-$(CONFIG_DEBUG_LL) += debug_ll.o
|
|
else
|
|
obj-y += late_lowlevel_init.o
|
|
obj-y += cache-uniphier.o
|
|
obj-$(CONFIG_ARMV7_PSCI) += psci.o psci_smp.o
|
|
endif
|
|
|
|
obj-y += timer.o
|