diff options
Diffstat (limited to 'arch/riscv/cpu/fu540/Makefile')
-rw-r--r-- | arch/riscv/cpu/fu540/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/riscv/cpu/fu540/Makefile b/arch/riscv/cpu/fu540/Makefile new file mode 100644 index 0000000000..043fb961a5 --- /dev/null +++ b/arch/riscv/cpu/fu540/Makefile @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (C) 2020 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 |