[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
scripts
/
dtc
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 include-prefixes
SET
[ DEL ]
📁 libfdt
SET
[ DEL ]
📄 Makefile
767 B
SET
[ EDIT ]
|
[ DEL ]
📄 Makefile.dtc
467 B
SET
[ EDIT ]
|
[ DEL ]
📄 checks.c
50,410 B
SET
[ EDIT ]
|
[ DEL ]
📄 data.c
4,590 B
SET
[ EDIT ]
|
[ DEL ]
📄 dt_to_config
41,834 B
SET
[ EDIT ]
|
[ DEL ]
📄 dtc-lexer.l
6,308 B
SET
[ EDIT ]
|
[ DEL ]
📄 dtc-parser.y
10,781 B
SET
[ EDIT ]
|
[ DEL ]
📄 dtc.c
9,412 B
SET
[ EDIT ]
|
[ DEL ]
📄 dtc.h
8,455 B
SET
[ EDIT ]
|
[ DEL ]
📄 dtx_diff
8,755 B
SET
[ EDIT ]
|
[ DEL ]
📄 fdtdump.c
3,756 B
SET
[ EDIT ]
|
[ DEL ]
📄 fdtget.c
8,781 B
SET
[ EDIT ]
|
[ DEL ]
📄 fdtput.c
8,546 B
SET
[ EDIT ]
|
[ DEL ]
📄 flattree.c
21,953 B
SET
[ EDIT ]
|
[ DEL ]
📄 fstree.c
1,557 B
SET
[ EDIT ]
|
[ DEL ]
📄 livetree.c
20,787 B
SET
[ EDIT ]
|
[ DEL ]
📄 srcpos.c
8,772 B
SET
[ EDIT ]
|
[ DEL ]
📄 srcpos.h
2,948 B
SET
[ EDIT ]
|
[ DEL ]
📄 treesource.c
7,054 B
SET
[ EDIT ]
|
[ DEL ]
📄 update-dtc-source.sh
2,552 B
SET
[ EDIT ]
|
[ DEL ]
📄 util.c
8,701 B
SET
[ EDIT ]
|
[ DEL ]
📄 util.h
7,112 B
SET
[ EDIT ]
|
[ DEL ]
📄 version_gen.h
42 B
SET
[ EDIT ]
|
[ DEL ]
📄 yamltree.c
6,868 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Makefile
# SPDX-License-Identifier: GPL-2.0 # scripts/dtc makefile hostprogs-y := dtc always := $(hostprogs-y) dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \ srcpos.o checks.o util.o dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o # Source files need to get at the userspace version of libfdt_env.h to compile HOST_EXTRACFLAGS := -I$(src)/libfdt ifeq ($(wildcard /usr/include/yaml.h),) HOST_EXTRACFLAGS += -DNO_YAML else dtc-objs += yamltree.o HOSTLDLIBS_dtc := -lyaml endif # Generated files need one more search path to include headers in source tree HOSTCFLAGS_dtc-lexer.lex.o := -I$(src) HOSTCFLAGS_dtc-parser.tab.o := -I$(src) # dependencies on generated files need to be listed explicitly $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h