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-136 /
scripts /
package /
Delete
Unzip
Name
Size
Permission
Date
Action
debian
[ DIR ]
drwxr-xr-x
2026-07-17 06:29
builddeb
5.4
KB
-rwxr-xr-x
2026-07-01 19:48
buildtar
3.9
KB
-rwxr-xr-x
2024-03-10 20:38
gen-diff-patch
1.41
KB
-rwxr-xr-x
2024-03-10 20:38
install-extmod-build
986
B
-rwxr-xr-x
2026-07-01 19:48
kernel.spec
3.38
KB
-rw-r--r--
2024-03-10 20:38
mkdebian
6.12
KB
-rwxr-xr-x
2024-03-10 20:38
mkspec
697
B
-rwxr-xr-x
2024-03-10 20:38
snapcraft.template
256
B
-rw-r--r--
2024-03-10 20:38
Save
Rename
#!/bin/sh # SPDX-License-Identifier: GPL-2.0-only diff_patch=$1 mkdir -p "$(dirname "${diff_patch}")" git -C "${srctree:-.}" diff HEAD > "${diff_patch}" if [ ! -s "${diff_patch}" ] || [ -z "$(git -C "${srctree:-.}" ls-files --other --exclude-standard | head -n1)" ]; then exit fi # The source tarball, which is generated by 'git archive', contains everything # you committed in the repository. If you have local diff ('git diff HEAD'), # it will go into ${diff_patch}. If untracked files are remaining, the resulting # source package may not be correct. # # Examples: # - You modified a source file to add #include "new-header.h" # but forgot to add new-header.h # - You modified a Makefile to add 'obj-$(CONFIG_FOO) += new-dirver.o' # but you forgot to add new-driver.c # # You need to commit them, or at least stage them by 'git add'. # # This script does not take care of untracked files because doing so would # introduce additional complexity. Instead, print a warning message here if # untracked files are found. # If all untracked files are just garbage, you can ignore this warning. echo >&2 "============================ WARNING ============================" echo >&2 "Your working tree has diff from HEAD, and also untracked file(s)." echo >&2 "Please make sure you did 'git add' for all new files you need in" echo >&2 "the source package." echo >&2 "================================================================="