From 92ee68cb55f6a604489b29cfc7dde61cba60f4df Mon Sep 17 00:00:00 2001 From: Arian Date: Fri, 6 Sep 2024 14:01:17 +0200 Subject: [PATCH] sm8450-common: Use libhidlbase_shim for vendor.libdpmframework Change-Id: Iefe50b82b5b13bbdee10819a0c60c14240fab7ce --- extract-files.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extract-files.sh b/extract-files.sh index 7944a4f..c9c2731 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -105,6 +105,10 @@ function blob_fixup() { [ "$2" = "" ] && return 0 "${PATCHELF_0_17_2}" --set-soname "libgrpc++_unsecure_prebuilt.so" "${2}" ;; + vendor/lib64/vendor.libdpmframework.so) + [ "$2" = "" ] && return 0 + "${PATCHELF_0_17_2}" --add-needed "libhidlbase_shim.so" "${2}" + ;; *) return 1 ;;