mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-23 23:51:22 +02:00
Invokes the common cache_init function to initialize ccache. Signed-off-by: Zong Li <zong.li@sifive.com> Reviewed-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Rick Chen <rick@andestech.com>
12 lines
208 B
Makefile
12 lines
208 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2020-2021 SiFive, Inc
|
|
# Pragnesh Patel <pragnesh.patel@sifive.com>
|
|
|
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
|
obj-y += spl.o
|
|
else
|
|
obj-y += dram.o
|
|
obj-y += cpu.o
|
|
endif
|