create display userdebug dump
Bug: 269212897 Test: adb bugreport Change-Id: I666fb3e0872f8afcf5b8a2d8b598245fbcdbb151
This commit is contained in:
parent
80fed77790
commit
39e672acb4
6 changed files with 48 additions and 0 deletions
22
display/dump_display_userdebug.sh
Normal file
22
display/dump_display_userdebug.sh
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/vendor/bin/sh
|
||||
echo "------ HWC Fence States ------"
|
||||
for f in $(ls /data/vendor/log/hwc/*_hwc_fence_state*.txt)
|
||||
do
|
||||
echo $f
|
||||
cat $f
|
||||
done
|
||||
|
||||
echo "------ HWC Error Logs ------"
|
||||
for f in $(ls /data/vendor/log/hwc/*_hwc_error_log*.txt)
|
||||
do
|
||||
echo $f
|
||||
cat $f
|
||||
done
|
||||
|
||||
echo "------ HWC Debug Dumps ------"
|
||||
for f in $(ls /data/vendor/log/hwc/*_hwc_debug*.dump)
|
||||
do
|
||||
echo $f
|
||||
cat $f
|
||||
done
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue