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