mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	The device tree overlays are a good way to deal with user-modifyable boards or boards with some kind of an expansion mechanism where we can easily plug new board in (like the BBB, the Raspberry Pi or the CHIP). Add a new function to merge overlays with a base device tree. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			315 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # (C) Copyright 2000-2007
 | |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-y += \
 | |
| 	fdt.o \
 | |
| 	fdt_ro.o \
 | |
| 	fdt_rw.o \
 | |
| 	fdt_strerror.o \
 | |
| 	fdt_sw.o \
 | |
| 	fdt_wip.o \
 | |
| 	fdt_empty_tree.o \
 | |
| 	fdt_addresses.o \
 | |
| 	fdt_region.o
 | |
| 
 | |
| obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o
 |