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 /
arch /
mips /
Delete
Unzip
Name
Size
Permission
Date
Action
alchemy
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
ath25
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
ath79
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
bcm47xx
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
bcm63xx
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
bmips
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
boot
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
cavium-octeon
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
cobalt
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
crypto
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
dec
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
fw
[ DIR ]
drwxr-xr-x
2026-06-04 06:35
generic
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
include
[ DIR ]
drwxr-xr-x
2026-06-04 06:35
ingenic
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
jazz
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
kernel
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
kvm
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
lantiq
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
lib
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
loongson2ef
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
loongson32
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
loongson64
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
math-emu
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
mm
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
mti-malta
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
n64
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
net
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
pci
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
pic32
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
power
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
ralink
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
rb532
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sgi-ip22
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sgi-ip27
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sgi-ip30
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sgi-ip32
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sibyte
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
sni
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
tools
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
txx9
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
vdso
[ DIR ]
drwxr-xr-x
2026-06-04 06:36
Kbuild
466
B
-rw-r--r--
2024-03-10 20:38
Kbuild.platforms
1.44
KB
-rw-r--r--
2024-03-10 20:38
Kconfig
79.4
KB
-rw-r--r--
2026-05-26 09:55
Kconfig.debug
5.55
KB
-rw-r--r--
2024-03-10 20:38
Makefile
20.29
KB
-rw-r--r--
2026-05-26 09:55
Makefile.postlink
954
B
-rw-r--r--
2024-03-10 20:38
Save
Rename
# SPDX-License-Identifier: GPL-2.0 # =========================================================================== # Post-link MIPS pass # =========================================================================== # # 1. Check that Loongson3 LL/SC workarounds are applied correctly # 2. Insert relocations into vmlinux PHONY := __archpost __archpost: -include include/config/auto.conf include $(srctree)/scripts/Kbuild.include CMD_LS3_LLSC = arch/mips/tools/loongson3-llsc-check quiet_cmd_ls3_llsc = LLSCCHK $@ cmd_ls3_llsc = $(CMD_LS3_LLSC) $@ CMD_RELOCS = arch/mips/boot/tools/relocs quiet_cmd_relocs = RELOCS $@ cmd_relocs = $(CMD_RELOCS) $@ # `@true` prevents complaint when there is nothing to be done vmlinux: FORCE @true ifeq ($(CONFIG_CPU_LOONGSON3_WORKAROUNDS),y) $(call if_changed,ls3_llsc) endif ifeq ($(CONFIG_RELOCATABLE),y) $(call if_changed,relocs) endif clean: @true PHONY += FORCE clean FORCE: .PHONY: $(PHONY)