Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 108.162.241.241
128 Domain
8.2.28
aev999
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 /
glibc /
debian /
sysdeps /
[ HOME SHELL ]
Name
Size
Permission
Action
alpha.mk
418
B
-rw-r--r--
amd64.mk
1.49
KB
-rw-r--r--
arm64.mk
104
B
-rw-r--r--
armel.mk
1.07
KB
-rw-r--r--
armhf.mk
1.23
KB
-rw-r--r--
hppa.mk
488
B
-rw-r--r--
hurd-i386.mk
1.2
KB
-rw-r--r--
hurd.mk
1.23
KB
-rw-r--r--
i386.mk
1.73
KB
-rw-r--r--
ia64.mk
56
B
-rw-r--r--
kfreebsd-amd64.mk
939
B
-rw-r--r--
kfreebsd.mk
2.46
KB
-rw-r--r--
linux.mk
2.37
KB
-rw-r--r--
mips.mk
1.59
KB
-rw-r--r--
mips64.mk
1.5
KB
-rw-r--r--
mips64el.mk
1.51
KB
-rw-r--r--
mips64r6.mk
1.55
KB
-rw-r--r--
mips64r6el.mk
1.56
KB
-rw-r--r--
mipsel.mk
1.6
KB
-rw-r--r--
mipsn32.mk
1.47
KB
-rw-r--r--
mipsn32el.mk
1.49
KB
-rw-r--r--
mipsn32r6.mk
1.53
KB
-rw-r--r--
mipsn32r6el.mk
1.54
KB
-rw-r--r--
mipsr6.mk
1.64
KB
-rw-r--r--
mipsr6el.mk
1.66
KB
-rw-r--r--
powerpc.mk
861
B
-rw-r--r--
ppc64.mk
997
B
-rw-r--r--
ppc64el.mk
319
B
-rw-r--r--
prof.mk
517
B
-rw-r--r--
riscv64.mk
69
B
-rw-r--r--
s390x.mk
806
B
-rw-r--r--
sh3.mk
358
B
-rw-r--r--
sh4.mk
358
B
-rw-r--r--
sparc.mk
940
B
-rw-r--r--
sparc64.mk
1.01
KB
-rw-r--r--
x32.mk
1.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : linux.mk
# When changing this, make sure: # - to update debian/debhelper.in/libc.preinst! # - that all builds for a given gnu triplet have the same minimum version (see bug#882255) MIN_KERNEL_SUPPORTED := 3.2 libc = libc6 # Do not build pt_chown on this platform pt_chown = no # Expect pldd on this platform pldd = yes # NPTL Config threads = yes ifeq ($(filter stage1 stage2,$(DEB_BUILD_PROFILES)),) libc_extra_config_options = --with-selinux --enable-systemtap $(extra_config_options) endif ifndef LINUX_SOURCE ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) LINUX_HEADERS := /usr/include else LINUX_HEADERS := /usr/$(DEB_HOST_GNU_TYPE)/include endif else LINUX_HEADERS := $(LINUX_SOURCE)/include endif # Minimum Kernel supported with_headers = --with-headers=$(shell pwd)/debian/include --enable-kernel=$(call xx,MIN_KERNEL_SUPPORTED) KERNEL_HEADER_DIR = $(stamp)mkincludedir $(stamp)mkincludedir: rm -rf debian/include mkdir debian/include # Kernel and library headers for h in arch asm asm-generic libaudit.h linux selinux sys/capability.h ; do \ mkdir -p debian/include/$$(dirname $$h) ; \ if [ -e "$(LINUX_HEADERS)/$$h" ]; then \ ln -s $(LINUX_HEADERS)/$$h debian/include/$$h ; \ elif [ -e "/usr/include/$(DEB_HOST_MULTIARCH)/$$h" ]; then \ ln -s /usr/include/$(DEB_HOST_MULTIARCH)/$$h debian/include/$$h ; \ elif [ -e "/usr/include/$$h" ]; then \ ln -s /usr/include/$$h debian/include/$$h ; \ fi ; \ done ln -s /usr/include/$(DEB_HOST_MULTIARCH)/sys/sdt.h debian/include/sys/sdt.h ln -s /usr/include/$(DEB_HOST_MULTIARCH)/sys/sdt-config.h debian/include/sys/sdt-config.h # To make configure happy if libc6-dev is not installed. touch debian/include/assert.h touch $@ # Also to make configure happy. export CPPFLAGS = -isystem $(shell pwd)/debian/include # This round of ugliness decomposes the Linux kernel version number # into an integer so it can be easily compared and then does so. CURRENT_KERNEL_VERSION=$(shell uname -r) define kernel_check (minimum=$$((`echo $(1) | sed 's/^\([0-9]*\.[0-9]*\)\([^.0-9]\|$$\)/\1.0\2/; s/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)); \ current=$$((`echo $(CURRENT_KERNEL_VERSION) | sed 's/^\([0-9]*\.[0-9]*\)\([^.0-9]\|$$\)/\1.0\2/; s/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)); \ if [ $$current -lt $$minimum ]; then \ false; \ fi) endef
Close