aboutsummaryrefslogtreecommitdiff
path: root/rootdir/system/etc
diff options
context:
space:
mode:
authorAlexander Diewald <Diewi@diewald-net.com>2017-11-28 15:49:49 +0100
committerArian <arian.kulmer@web.de>2019-10-07 11:11:29 +0200
commit281e1c378aaa1b7197051f9a1e4f0d75b60dcac8 (patch)
treee03d943450732f3da5b26939afc30593a2d97e0c /rootdir/system/etc
parent154011abb8b0e9cc67c5f0620f18e080f3ae983e (diff)
shinano: Move shell scripts to system/vendor.
* Scripts use the /system/vendor/bin/sh shebang now. * Move shell scripts from system/etc to vendor/system/bin. * Adjust init files. Change-Id: Ib0b9eb59305425b415e2681e7943f9ebfa6480d4 Signed-off-by: Alexander Diewald <Diewi@diewald-net.com> Signed-off-by: Arian <arian.kulmer@web.de>
Diffstat (limited to 'rootdir/system/etc')
-rw-r--r--rootdir/system/etc/init.qcom-sensor.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/rootdir/system/etc/init.qcom-sensor.sh b/rootdir/system/etc/init.qcom-sensor.sh
deleted file mode 100644
index 21d24c7..0000000
--- a/rootdir/system/etc/init.qcom-sensor.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/system/bin/sh
-# Copyright (C) 2013 Sony Mobile Communications AB.
-
-#
-# Function to start sensors for DSPS enabled platforms
-#
-start_sensors()
-{
- if [ -c /dev/msm_dsps -o -c /dev/sensors ]; then
- chmod -h 775 /persist/sensors
- chmod -h 664 /persist/sensors/sensors_settings
- chown -h system.root /persist/sensors/sensors_settings
-
- mkdir -p /data/misc/sensors
- chmod -h 775 /data/misc/sensors
-
- echo 1 > /persist/sensors/settings
- start sensors
- fi
-}
-
-start_sensors
-