You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
719 B
25 lines
719 B
7 months ago
|
on boot
|
||
|
# Allow bugreports access to eMMC 5.0 stats
|
||
|
chown root mount /sys/kernel/debug/mmc0/mmc0:0001/ext_csd
|
||
|
chmod 0440 /sys/kernel/debug/mmc0/mmc0:0001/ext_csd
|
||
|
|
||
|
service dumpstate /system/bin/dumpstate -s
|
||
|
class main
|
||
|
socket dumpstate stream 0660 shell log
|
||
|
disabled
|
||
|
oneshot
|
||
|
|
||
|
# dumpstatez generates a zipped bugreport but also uses a socket to print the file location once
|
||
|
# it is finished.
|
||
|
service dumpstatez /system/bin/dumpstate -S
|
||
|
socket dumpstate stream 0660 shell log
|
||
|
class main
|
||
|
disabled
|
||
|
oneshot
|
||
|
|
||
|
# bugreportd starts dumpstate binder service and makes it wait for a listener to connect.
|
||
|
service bugreportd /system/bin/dumpstate -w
|
||
|
class main
|
||
|
disabled
|
||
|
oneshot
|