aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh')
-rw-r--r--common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh b/common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh
deleted file mode 100644
index 3fc74e52..00000000
--- a/common/recipes-devtools/codexl/codexl/codexl_remote_agent.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-ACTION=$1
-
-function start_remote_agent {
- if [ -z "`cat /proc/modules | grep amdtPwrProf`" ]; then
- insmod /opt/codexl/amdtPwrProf.ko
- fi
- export DISPLAY=:0
- /opt/codexl/CodeXLRemoteAgent
-}
-
-function stop_remote_agent {
- killall -q CodeXLRemoteAgent-bin
- if [ -n "`cat /proc/modules | grep amdtPwrProf`" ]; then
- rmmod amdtPwrProf
- fi
-}
-
-if [ $ACTION = "start" ]; then
- echo "START the remote agent"
- stop_remote_agent
- start_remote_agent
-else
- echo "STOP the remote agent"
- stop_remote_agent
-fi