mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-25 07:41:42 +01:00

We update FDT support makefile to use kconfig for enabling/disabling. To avoid compilation errors, we also enable FDT for each platform. Signed-off-by: Anup Patel <apatel@ventanamicro.com> Tested-by: Andrew Jones <ajones@ventanamicro.com> Acked-by: Atish Patra <atishp@rivosinc.com> Tested-by: Atish Patra <atishp@rivosinc.com>
11 lines
309 B
Makefile
11 lines
309 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (C) 2020 Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
|
|
libsbiutils-objs-$(CONFIG_FDT_DOMAIN) += fdt/fdt_domain.o
|
|
libsbiutils-objs-$(CONFIG_FDT_PMU) += fdt/fdt_pmu.o
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_helper.o
|
|
libsbiutils-objs-$(CONFIG_FDT) += fdt/fdt_fixup.o
|