sm8550-common: Add security.rkp-V3 dependency to keymint service

The symbol _ZN4aidl7android8hardware8security7keymint29IRemotelyProvisionedComponent10descriptorE
was moved from android.hardware.security.keymint-V2-ndk to android.hardware.security.rkp-V3-ndk.

Change-Id: I7f3c40e3e8a2a848cdcb73e5232952f63681aa58
This commit is contained in:
SGCMarkus
2023-10-19 11:53:28 +02:00
committed by chaptsand
parent 04b43bd8aa
commit 5049a89a5d
2 changed files with 4 additions and 0 deletions

View File

@@ -226,6 +226,7 @@ PRODUCT_PACKAGES += \
android.hardware.hardware_keystore.xml \ android.hardware.hardware_keystore.xml \
android.hardware.security.keymint-V1-ndk.vendor \ android.hardware.security.keymint-V1-ndk.vendor \
android.hardware.security.keymint-V2-ndk.vendor \ android.hardware.security.keymint-V2-ndk.vendor \
android.hardware.security.rkp-V3-ndk.vendor \
android.hardware.security.secureclock-V1-ndk.vendor \ android.hardware.security.secureclock-V1-ndk.vendor \
android.hardware.security.sharedsecret-V1-ndk.vendor android.hardware.security.sharedsecret-V1-ndk.vendor

View File

@@ -60,6 +60,9 @@ fi
function blob_fixup() { function blob_fixup() {
case "${1}" in case "${1}" in
vendor/bin/hw/android.hardware.security.keymint-service)
${PATCHELF} --add-needed "android.hardware.security.rkp-V3-ndk.so" "${2}"
;;
esac esac
} }