summaryrefslogtreecommitdiffstats
path: root/runtime/probes/shellsnoop/build
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/probes/shellsnoop/build')
-rwxr-xr-xruntime/probes/shellsnoop/build17
1 files changed, 0 insertions, 17 deletions
diff --git a/runtime/probes/shellsnoop/build b/runtime/probes/shellsnoop/build
deleted file mode 100755
index fb344b37..00000000
--- a/runtime/probes/shellsnoop/build
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-KVERSION=`uname -r`
-echo $KVERSION
-KALLSYMS_LOOKUP_NAME=`grep " kallsyms_lookup_name" /boot/System.map-$KVERSION |awk '{print $1}'`
-KALLSYMS_LOOKUP=`grep " kallsyms_lookup$" /boot/System.map-$KVERSION |awk '{print $1}'`
-KTA=`grep "__kernel_text_address" /boot/System.map-$KVERSION |awk '{print $1}'`
-
-make V=1 -C /lib/modules/`uname -r`/build M=`pwd` modules \
- KALLSYMS_LOOKUP_NAME=0x$KALLSYMS_LOOKUP_NAME \
- KALLSYMS_LOOKUP=0x$KALLSYMS_LOOKUP KTA=0x$KTA\
- STP_RUNTIME=`pwd`/../..
-
-
-
-
-