summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2015-10-29 12:57:33 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2015-10-29 13:04:01 +0800
commitf76c42585dffd27134ae38721fa90e1217a6c0bc (patch)
tree252cc5999243554fba368ac033a0a4b3d36e2278 /android
parent1224fe2d7b9b97564053570e4bae4d121a27ae82 (diff)
android/scripts/gatortest.sh: remove the gator module check
since there is no gator.ko available now. The user-side daemon for gator now has enough support through standard kernel APIs to provide the majority of it's functionality without any kernel module. Change-Id: I062bb8da1fa964e92fb0f386dc67de2c6eb1354a Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'android')
-rwxr-xr-xandroid/scripts/gatortest.sh14
1 files changed, 3 insertions, 11 deletions
diff --git a/android/scripts/gatortest.sh b/android/scripts/gatortest.sh
index e3331d5..4a72c6a 100755
--- a/android/scripts/gatortest.sh
+++ b/android/scripts/gatortest.sh
@@ -22,17 +22,9 @@
# owner: harigopal.gollamudi@linaro.org
#
###############################################################################
-
-if lsmod | grep "gator"
+if ps | grep "gatord"
then
- echo "gator_daemon_check=pass"
+ echo "gatord_daemon_check=pass"
else
- echo "gator_daemon_check=fail"
-fi
-
-if ps | grep "gator"
-then
- echo "gator_module_check=pass"
-else
- echo "gator_module_check=fail"
+ echo "gatord_daemon_check=fail"
fi