mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 09:30:10 +00:00
14 lines
211 B
Makefile
14 lines
211 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
|
||
|
endif
|
||
|
|
||
|
obj-y += timer.o
|