One Hat Cyber Team
Your IP :
3.15.226.5
Server IP :
104.21.64.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
src
/
linux-headers-5.15.0-67
/
scripts
/
View File Name :
gen_ksymdeps.sh
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 set -e # List of exported symbols # # If the object has no symbol, $NM warns 'no symbols'. # Suppress the stderr. # TODO: # Use -q instead of 2>/dev/null when we upgrade the minimum version of # binutils to 2.37, llvm to 13.0.0. ksyms=$($NM $1 2>/dev/null | sed -n 's/.*__ksym_marker_\(.*\)/\1/p') if [ -z "$ksyms" ]; then exit 0 fi echo echo "ksymdeps_$1 := \\" for s in $ksyms do printf ' $(wildcard include/ksym/%s) \\\n' "$s" done echo echo "$1: \$(ksymdeps_$1)" echo echo "\$(ksymdeps_$1):"