mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-03 21:48:45 +00: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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			279 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			279 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
menuconfig FDT
 | 
						|
	bool "Flattened Device Tree (FDT) support"
 | 
						|
	select LIBFDT
 | 
						|
	default n
 | 
						|
 | 
						|
if FDT
 | 
						|
 | 
						|
config FDT_DOMAIN
 | 
						|
	bool "FDT domain support"
 | 
						|
	default n
 | 
						|
 | 
						|
config FDT_PMU
 | 
						|
	bool "FDT performance monitoring unit (PMU) support"
 | 
						|
	default n
 | 
						|
 | 
						|
endif
 |