summaryrefslogtreecommitdiff
path: root/init.hardware.diag.rc.user
blob: 6b98ad466bd66bdd39e17ffc72c0036f117a3195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (C) 2016 The Android Open-Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

on init
    chmod 666 /dev/diag

on post-fs-data
    mkdir /data/vendor/radio 0777 radio radio
    mkdir /data/vendor/radio/diag_logs 0777 system system
    rm /data/vendor/radio/diag_logs/logs/diag_poweron_log.qmdl

service diag_mdlog_start /vendor/bin/diag_mdlog
    class late_start
    user shell
    group system diag media_rw
    disabled
    oneshot

service diag_mdlog_stop /vendor/bin/diag_mdlog -k
    class late_start
    user shell
    group system diag media_rw
    disabled
    oneshot

on property:persist.vendor.sys.modem.diag.mdlog=*
    rm /data/vendor/radio/diag_logs/diag_mdlog_pid
    setprop vendor.sys.modem.diag.mdlog ${persist.vendor.sys.modem.diag.mdlog}

on property:vendor.sys.modem.diag.mdlog=true
    start diag_mdlog_start

on property:vendor.sys.modem.diag.mdlog=false
    start diag_mdlog_stop

on property:persist.vendor.verbose_logging_enabled=*
    setprop persist.vendor.sys.modem.diag.mdlog ${persist.vendor.verbose_logging_enabled}