mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
ddf67f7135
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>
19 lines
315 B
Makefile
19 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
|