Merge "dumpstate: add GSA logs to bugreport" into udc-d1-dev

This commit is contained in:
Kenny Root 2023-05-22 05:14:11 +00:00 committed by Android (Google) Code Review
commit 8d12593f03
3 changed files with 16 additions and 1 deletions

View file

@ -23,3 +23,9 @@ sh_binary {
sub_dir: "dump",
}
sh_binary {
name: "dump_gsa.sh",
src: "dump_gsa.sh",
vendor: true,
sub_dir: "dump",
}

8
dumpstate/dump_gsa.sh Normal file
View file

@ -0,0 +1,8 @@
#!/vendor/bin/sh
echo "--- GSA MAIN LOG"
cat /sys/devices/platform/16490000.gsa-ns/log_main
echo "--- GSA INTERMEDIATE LOG"
cat /sys/devices/platform/16490000.gsa-ns/log_intermediate

View file

@ -1,5 +1,6 @@
PRODUCT_PACKAGES += dump_wlan.sh \
dump_power.sh
PRODUCT_PACKAGES_DEBUG += dump_cma.sh
PRODUCT_PACKAGES_DEBUG += dump_cma.sh \
dump_gsa.sh