Change fingerprint manifest grep, because people are putting manifest anywhere

This commit is contained in:
Pierre-Hugues Husson 2022-03-21 19:02:59 -04:00
parent f85c88a1c7
commit 0048f513fd
1 changed files with 8 additions and 9 deletions

View File

@ -346,15 +346,14 @@ if grep vendor.huawei.hardware.biometrics.fingerprint /vendor/manifest.xml; then
fi
foundFingerprint=false
for manifest in /vendor/manifest.xml /vendor/etc/vintf/manifest.xml /odm/etc/vintf/manifest.xml /odm/etc/vintf/manifest/manifest_oplus_fingerprint.xml;do
if grep -q \
-e android.hardware.biometrics.fingerprint \
-e vendor.oppo.hardware.biometrics.fingerprint \
-e vendor.oplus.hardware.biometrics.fingerprint \
$manifest;
then
foundFingerprint=true
fi
for manifest in /vendor/manifest.xml /vendor/etc/vintf /odm/etc/vintf;do
if grep -q \
-e android.hardware.biometrics.fingerprint \
-e vendor.oppo.hardware.biometrics.fingerprint \
-e vendor.oplus.hardware.biometrics.fingerprint \
-r $manifest;then
foundFingerprint=true
fi
done
if [ "$foundFingerprint" = false ];then