1on boot
2    # Allow bugreports access to eMMC 5.0 stats
3    chown root mount /sys/kernel/debug/mmc0/mmc0:0001/ext_csd
4    chmod 0440 /sys/kernel/debug/mmc0/mmc0:0001/ext_csd
5
6service dumpstate /system/bin/dumpstate -s
7    class main
8    socket dumpstate stream 0660 shell log
9    disabled
10    oneshot
11
12# dumpstatez generates a zipped bugreport but also uses a socket to print the file location once
13# it is finished.
14service dumpstatez /system/bin/dumpstate -S -d -z
15    socket dumpstate stream 0660 shell log
16    class main
17    disabled
18    oneshot
19
20# bugreportd starts dumpstate binder service and makes it wait for a listener to connect.
21service bugreportd /system/bin/dumpstate -w
22    class main
23    disabled
24    oneshot
25