mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	My goal is to sync lib/libfdt/ with scripts/dtc/libfdt/, that is, make lib/libfdt/ contain only wrapper files. fdt_region.c was written only for U-Boot to implement the verified boot. So, this belongs to the same group as common/fdt_support.c, which is a collection of U-Boot own fdt helpers. Move lib/libfdt/fdt_region.c to common/fdt_region.c . This is necessary only when CONFIG_(SPL_TPL_)_FIT_SIGNATURE is enabled. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
		
			
				
	
	
		
			20 lines
		
	
	
		
			405 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			405 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| #
 | |
| # (C) Copyright 2000-2007
 | |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
| 
 | |
| obj-y += \
 | |
| 	fdt.o \
 | |
| 	fdt_ro.o \
 | |
| 	fdt_wip.o \
 | |
| 	fdt_strerror.o \
 | |
| 	fdt_sw.o \
 | |
| 	fdt_rw.o \
 | |
| 	fdt_empty_tree.o \
 | |
| 	fdt_addresses.o
 | |
| 
 | |
| obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o
 | |
| 
 | |
| ccflags-y := -I$(srctree)/scripts/dtc/libfdt \
 | |
| 	-DFDT_ASSUME_MASK=$(CONFIG_$(SPL_TPL_)OF_LIBFDT_ASSUME_MASK)
 |