mirror of
https://github.com/AetherDroid/vendor_samsung_universal7570-common.git
synced 2025-09-07 00:38:06 -04:00
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
on post-fs-data
|
|
# SA, System SW, SAMSUNG
|
|
# create log directory
|
|
mkdir /data/log 0775 system log
|
|
mkdir /data/log/core 0775 root root
|
|
chown system log /data/log
|
|
mkdir /data/anr 0775 system system
|
|
chown system system /data/anr
|
|
chmod 0775 /data/log
|
|
chmod 0775 /data/anr
|
|
mkdir /data/log/batterystats 0750 system log
|
|
|
|
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 -d -z \
|
|
-o /data/user_de/0/com.android.shell/files/bugreports/bugreport
|
|
socket dumpstate stream 0660 shell log
|
|
class main
|
|
disabled
|
|
oneshot
|
|
|
|
service bugreportsa /system/bin/dumpstate
|
|
class main
|
|
disabled
|
|
oneshot
|
|
|
|
service bugreport /system/bin/dumpstate -d -p -B -z \
|
|
-o /data/user_de/0/com.android.shell/files/bugreports/bugreport
|
|
class main
|
|
disabled
|
|
oneshot
|