diff --git a/BoardConfig-common.mk b/BoardConfig-common.mk index 08af6013..d3ac8d15 100644 --- a/BoardConfig-common.mk +++ b/BoardConfig-common.mk @@ -420,3 +420,6 @@ BOARD_KERNEL_CMDLINE += log_buf_len=1024K # Protected VM firmware BOARD_PVMFWIMAGE_PARTITION_SIZE := 0x00100000 + +# pick up library for cleaning digital car keys on factory reset +-include vendor/google_devices/gs-common/proprietary/BoardConfigVendor.mk diff --git a/dumpstate/Dumpstate.cpp b/dumpstate/Dumpstate.cpp index 7ef46c20..bb5641bc 100644 --- a/dumpstate/Dumpstate.cpp +++ b/dumpstate/Dumpstate.cpp @@ -1075,6 +1075,9 @@ void Dumpstate::dumpSensorsUSFSection(int fd) { RunCommandToFd(fd, "USF Registry", {"/vendor/bin/sh", "-c", "usf_reg_edit save -"}, options); + RunCommandToFd(fd, "USF Last Stat Buffer", + {"/vendor/bin/sh", "-c", "cat /data/vendor/sensors/debug/stats.history"}, + options); } } }