Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
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-6.8.0-124 /
scripts /
dtc /
Delete
Unzip
Name
Size
Permission
Date
Action
include-prefixes
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
libfdt
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
.gitignore
57
B
-rw-r--r--
2024-03-10 20:38
Makefile
1.14
KB
-rw-r--r--
2024-03-10 20:38
checks.c
53.74
KB
-rw-r--r--
2024-03-10 20:38
data.c
4.51
KB
-rw-r--r--
2024-03-10 20:38
dt-extract-compatibles
3.59
KB
-rwxr-xr-x
2024-03-10 20:38
dt_to_config
40.81
KB
-rwxr-xr-x
2024-03-10 20:38
dtc-lexer.l
6.14
KB
-rw-r--r--
2024-03-10 20:38
dtc-parser.y
11.11
KB
-rw-r--r--
2024-03-10 20:38
dtc.c
9.24
KB
-rw-r--r--
2024-03-10 20:38
dtc.h
9.59
KB
-rw-r--r--
2024-03-10 20:38
dtx_diff
8.86
KB
-rwxr-xr-x
2024-03-10 20:38
fdtget.c
7.92
KB
-rw-r--r--
2024-03-10 20:38
fdtoverlay.c
4.24
KB
-rw-r--r--
2024-03-10 20:38
fdtput.c
7.69
KB
-rw-r--r--
2024-03-10 20:38
flattree.c
21.48
KB
-rw-r--r--
2024-03-10 20:38
fstree.c
1.52
KB
-rw-r--r--
2024-03-10 20:38
livetree.c
20.84
KB
-rw-r--r--
2024-03-10 20:38
of_unittest_expect
12.39
KB
-rwxr-xr-x
2024-03-10 20:38
srcpos.c
8.57
KB
-rw-r--r--
2024-03-10 20:38
srcpos.h
2.88
KB
-rw-r--r--
2024-03-10 20:38
treesource.c
6.82
KB
-rw-r--r--
2024-03-10 20:38
update-dtc-source.sh
2.51
KB
-rwxr-xr-x
2024-03-10 20:38
util.c
8.67
KB
-rw-r--r--
2024-03-10 20:38
util.h
7.07
KB
-rw-r--r--
2024-03-10 20:38
version_gen.h
42
B
-rw-r--r--
2024-03-10 20:38
yamltree.c
6.31
KB
-rw-r--r--
2024-03-10 20:38
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 HOST_EXTRACFLAGS += -DNO_YAML # 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