Snap for 9401934 from 2292b4ed13
to udc-release
Change-Id: I70b95135a24a83d8c04dbe887a5675c737edb27d
This commit is contained in:
commit
d525c2ca65
3 changed files with 12 additions and 4 deletions
|
@ -287,9 +287,7 @@ on init
|
|||
chown system system /sys/devices/platform/google,cpm/dc_ctl
|
||||
# Important to include dd_state as it's used in battery defender in charger mode
|
||||
chown system system /sys/devices/platform/google,charger/dd_state
|
||||
# Disable dock-defend by default
|
||||
chown system system /sys/devices/platform/google,charger/dd_settings
|
||||
write /sys/devices/platform/google,charger/dd_settings -1
|
||||
|
||||
# Power Stats HAL
|
||||
chown system system /dev/bbd_pwrstat
|
||||
|
|
|
@ -857,6 +857,10 @@ PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
|||
PRODUCT_PRODUCT_PROPERTIES += \
|
||||
persist.sys.fuse.passthrough.enable=true
|
||||
|
||||
# Use FUSE BPF
|
||||
PRODUCT_PRODUCT_PROPERTIES += \
|
||||
ro.fuse.bpf.enabled=true
|
||||
|
||||
# Use /product/etc/fstab.postinstall to mount system_other
|
||||
PRODUCT_PRODUCT_PROPERTIES += \
|
||||
ro.postinstall.fstab.prefix=/product
|
||||
|
|
|
@ -590,8 +590,14 @@ void Dumpstate::dumpDisplaySection(int fd) {
|
|||
DumpFileToFd(fd, "Secondary panel name", "/sys/devices/platform/exynos-drm/secondary-panel/panel_name");
|
||||
DumpFileToFd(fd, "Secondary panel extra info", "/sys/devices/platform/exynos-drm/secondary-panel/panel_extinfo");
|
||||
if (!PropertiesHelper::IsUserBuild()) {
|
||||
DumpFileToFd(fd, "HWC Fence State", "/data/vendor/log/hwc/hwc_fence_state.txt");
|
||||
DumpFileToFd(fd, "HWC Error Log", "/data/vendor/log/hwc/hwc_error_log.txt");
|
||||
RunCommandToFd(fd, "HWC Fence States", {"/vendor/bin/sh", "-c",
|
||||
"for f in $(ls /data/vendor/log/hwc/*_hwc_fence_state*.txt); do "
|
||||
"echo $f ; cat $f ; done"},
|
||||
CommandOptions::WithTimeout(2).Build());
|
||||
RunCommandToFd(fd, "HWC Error Logs", {"/vendor/bin/sh", "-c",
|
||||
"for f in $(ls /data/vendor/log/hwc/*_hwc_error_log*.txt); do "
|
||||
"echo $f ; cat $f ; done"},
|
||||
CommandOptions::WithTimeout(2).Build());
|
||||
RunCommandToFd(fd, "HWC Debug Dumps", {"/vendor/bin/sh", "-c",
|
||||
"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