/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/scripts/dtc
NameSizeModeActions
include-prefixes/-0755rm
libfdt/-0755rm
checks.c504100644editdlrm
data.c45900644editdlrm
dtc-lexer.l63080644editdlrm
dtc-parser.y107810644editdlrm
dtc.c94120644editdlrm
dtc.h84550644editdlrm
dtx_diff87550755editdlrm
dt_to_config418340755editdlrm
fdtdump.c37560644editdlrm
fdtget.c87810644editdlrm
fdtput.c85460644editdlrm
flattree.c219530644editdlrm
fstree.c15570644editdlrm
livetree.c207870644editdlrm
Makefile7670644editdlrm
Makefile.dtc4670644editdlrm
srcpos.c87720644editdlrm
srcpos.h29480644editdlrm
treesource.c70540644editdlrm
update-dtc-source.sh25520755editdlrm
util.c87010644editdlrm
util.h71120644editdlrm
version_gen.h420644editdlrm
yamltree.c68680644editdlrm
Edit: /usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/scripts/dtc/Makefile.dtc (467B)
# SPDX-License-Identifier: GPL-2.0-or-later # Makefile.dtc # # This is not a complete Makefile of itself. Instead, it is designed to # be easily embeddable into other systems of Makefiles. # DTC_SRCS = \ checks.c \ data.c \ dtc.c \ flattree.c \ fstree.c \ livetree.c \ srcpos.c \ treesource.c \ util.c ifneq ($(NO_YAML),1) DTC_SRCS += yamltree.c endif DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o)