Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-5.15.0-186 /
scripts /
dtc /
Delete
Unzip
Name
Size
Permission
Date
Action
include-prefixes
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
libfdt
[ DIR ]
drwxr-xr-x
2026-07-21 06:37
.gitignore
57
B
-rw-r--r--
2021-11-01 05:53
Makefile
1.64
KB
-rw-r--r--
2026-06-21 00:49
checks.c
50.31
KB
-rw-r--r--
2021-11-01 05:53
data.c
4.51
KB
-rw-r--r--
2021-11-01 05:53
dt_to_config
40.81
KB
-rwxr-xr-x
2021-11-01 05:53
dtc-lexer.l
6.1
KB
-rw-r--r--
2026-06-21 00:49
dtc-parser.y
10.56
KB
-rw-r--r--
2021-11-01 05:53
dtc.c
9.31
KB
-rw-r--r--
2021-11-01 05:53
dtc.h
8.91
KB
-rw-r--r--
2021-11-01 05:53
dtx_diff
8.86
KB
-rwxr-xr-x
2026-06-21 00:49
fdtget.c
7.92
KB
-rw-r--r--
2021-11-01 05:53
fdtoverlay.c
4.24
KB
-rw-r--r--
2021-11-01 05:53
fdtput.c
7.69
KB
-rw-r--r--
2021-11-01 05:53
flattree.c
21.46
KB
-rw-r--r--
2021-11-01 05:53
fstree.c
1.52
KB
-rw-r--r--
2021-11-01 05:53
livetree.c
20.31
KB
-rw-r--r--
2021-11-01 05:53
srcpos.c
8.57
KB
-rw-r--r--
2021-11-01 05:53
srcpos.h
2.88
KB
-rw-r--r--
2021-11-01 05:53
treesource.c
6.83
KB
-rw-r--r--
2021-11-01 05:53
update-dtc-source.sh
2.52
KB
-rwxr-xr-x
2021-11-01 05:53
util.c
8.5
KB
-rw-r--r--
2021-11-01 05:53
util.h
6.96
KB
-rw-r--r--
2021-11-01 05:53
version_gen.h
42
B
-rw-r--r--
2021-11-01 05:53
yamltree.c
6.21
KB
-rw-r--r--
2021-11-01 05:53
Save
Rename
# SPDX-License-Identifier: GPL-2.0 # scripts/dtc makefile # *** Also keep .gitignore in sync when changing *** hostprogs-always-$(CONFIG_DTC) += dtc fdtoverlay hostprogs-always-$(CHECK_DT_BINDING) += dtc 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 # The upstream project builds libfdt as a separate library. We are choosing to # instead directly link the libfdt object files into fdtoverlay. libfdt-objs := fdt.o fdt_ro.o fdt_wip.o fdt_sw.o fdt_rw.o fdt_strerror.o fdt_empty_tree.o fdt_addresses.o fdt_overlay.o libfdt = $(addprefix libfdt/,$(libfdt-objs)) fdtoverlay-objs := $(libfdt) fdtoverlay.o util.o # Source files need to get at the userspace version of libfdt_env.h to compile HOST_EXTRACFLAGS += -I $(srctree)/$(src)/libfdt ifeq ($(shell $(HOSTPKG_CONFIG) --exists yaml-0.1 2>/dev/null && echo yes),) ifneq ($(CHECK_DT_BINDING)$(CHECK_DTBS),) $(error dtc needs libyaml for DT schema validation support. \ Install the necessary libyaml development package.) endif HOST_EXTRACFLAGS += -DNO_YAML else dtc-objs += yamltree.o # To include <yaml.h> installed in a non-default path HOSTCFLAGS_yamltree.o := $(shell $(HOSTPKG_CONFIG) --cflags yaml-0.1) # To link libyaml installed in a non-default path HOSTLDLIBS_dtc := $(shell $(HOSTPKG_CONFIG) --libs yaml-0.1) endif # Generated files need one more search path to include headers in source tree HOSTCFLAGS_dtc-lexer.lex.o := -I $(srctree)/$(src) HOSTCFLAGS_dtc-parser.tab.o := -I $(srctree)/$(src) # dependencies on generated files need to be listed explicitly $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h