diff options
author | Kevin Jeon <kevinjeon@google.com> | 2021-01-19 22:52:54 +0000 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2022-08-07 12:34:51 +0200 |
commit | dfb430fe5d8a5bea8549df93ad5785ba24d5302c (patch) | |
tree | 0020eee64e63d4abf897627b07b020662d0cc98b /overlay | |
parent | 0005294377bba369859349564108d32e25bbf95f (diff) |
msm8996-common: Update SurfaceFlinger pin on all targets
This change replaces the '/system/lib64/libsurfaceflinger.so' pin, as
the file was removed in ag/12524602. The updated pin relies on
go/aog/1552085, as system_service needs read access to SurfaceFlinger.
Bug: 176197656
Test: adb shell dumpsys pinner (coral)
- shows that /system/bin/surfaceflinger is successfully pinned
adb logcat | grep PinnerService (coral)
- no longer shows a file-not-found error in PinnerService
Change-Id: Iae2a96c5fe4b1f5698d21de9970140321d11c460
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 9c62be6..d0bc121 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -415,7 +415,7 @@ <item>"/apex/com.android.media/javalib/updatable-media.jar"</item> <item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item> <item>"/system_ext/priv-app/SystemUI/oat/arm64/SystemUI.odex"</item> - <item>"/system/lib64/libsurfaceflinger.so"</item> + <item>"/system/bin/surfaceflinger"</item> </string-array> <!-- Should the pinner service pin the Home application? --> @@ -432,7 +432,7 @@ <item>"/apex/com.android.art/javalib/core-libart.jar"</item> <item>"/apex/com.android.media/javalib/updatable-media.jar"</item> <item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item> - <item>"/system/lib64/libsurfaceflinger.so"</item> + <item>"/system/bin/surfaceflinger"</item> </string-array> <!-- Boolean indicating whether the HWC setColorTransform function can be performed efficiently |