summaryrefslogtreecommitdiff
path: root/kprobe
diff options
context:
space:
mode:
authorVyacheslav Cherkashin <v.cherkashin@samsung.com>2014-10-23 19:00:05 +0400
committerVyacheslav Cherkashin <v.cherkashin@samsung.com>2014-10-23 19:00:05 +0400
commit10433d40881fb6e6c3129b2a1d731c0492eb11f9 (patch)
treeca2cc8d1f883f40752beab46c5bbddaa2ea060ea /kprobe
parenta5784e6a2d85acc7619d7555fc834abe5cb17337 (diff)
downloadswap-modules-10433d40881fb6e6c3129b2a1d731c0492eb11f9.tar.gz
swap-modules-10433d40881fb6e6c3129b2a1d731c0492eb11f9.tar.bz2
swap-modules-10433d40881fb6e6c3129b2a1d731c0492eb11f9.zip
[CLEAN] remove module scriptsTizen_SDK_2.3
Change-Id: I4d5e65d84f35db68338468c211e9051a27968ebb Signed-off-by: Vyacheslav Cherkashin <v.cherkashin@samsung.com>
Diffstat (limited to 'kprobe')
-rwxr-xr-xkprobe/swap_kprobe.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/kprobe/swap_kprobe.sh b/kprobe/swap_kprobe.sh
deleted file mode 100755
index dcebf699..00000000
--- a/kprobe/swap_kprobe.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-SWAP_KPROBE=swap_kprobe
-
-# Check for running module in /proc/modules
-RUNNING=`sed "/${SWAP_KPROBE}/ ! d" /proc/modules`
-
-if [ "${RUNNING}" = "" ]; then
- ./bin/insmod.sh ${SWAP_KPROBE}.ko
- if [ $? -ne 0 ]; then
- echo "Error: unable to load SWAP KProbe!"
- exit 1
- fi
-else
- echo "SWAP Kprobe is already running!"
- exit 1
-fi