mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
bcbdab70a2
There is no essential difference between scripts/dtc/libfdt/fdt_ro.c and lib/libfdt/fdt_ro.c Migrate to a simple wrapper like the other files. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
22 lines
446 B
Makefile
22 lines
446 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
|
|
|
|
# U-Boot own file
|
|
obj-y += fdt_region.o
|
|
|
|
ccflags-y := -I$(srctree)/scripts/dtc/libfdt \
|
|
-DFDT_ASSUME_MASK=$(CONFIG_$(SPL_TPL_)OF_LIBFDT_ASSUME_MASK)
|