2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2007-03-31 16:05:39 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2007
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
2007-03-31 15:59:59 +00:00
|
|
|
|
2017-10-17 13:30:20 +00:00
|
|
|
# Use upstream code.
|
2016-05-23 09:40:55 +00:00
|
|
|
obj-y += \
|
|
|
|
fdt.o \
|
2017-11-27 07:06:07 +00:00
|
|
|
fdt_wip.o \
|
2016-05-23 09:40:55 +00:00
|
|
|
fdt_strerror.o \
|
|
|
|
fdt_sw.o \
|
2018-01-21 10:19:13 +00:00
|
|
|
fdt_rw.o \
|
2016-05-23 09:40:55 +00:00
|
|
|
fdt_empty_tree.o \
|
2017-10-17 13:30:20 +00:00
|
|
|
fdt_addresses.o
|
2016-07-05 08:26:44 +00:00
|
|
|
|
|
|
|
obj-$(CONFIG_OF_LIBFDT_OVERLAY) += fdt_overlay.o
|
2017-10-17 13:30:20 +00:00
|
|
|
|
|
|
|
# Locally modified for U-Boot.
|
|
|
|
# TODO: split out the local modifiction.
|
2018-01-21 10:19:13 +00:00
|
|
|
obj-y += fdt_ro.o
|
2017-10-17 13:30:20 +00:00
|
|
|
|
|
|
|
# U-Boot own file
|
|
|
|
obj-y += fdt_region.o
|
2018-03-04 16:20:11 +00:00
|
|
|
|
|
|
|
ccflags-y := -I$(srctree)/scripts/dtc/libfdt
|