sm6375-common: Update blob fixup for dolby c2 with a wildcard

The fqname can change, so let's add a wildcard after the word default with fqname
just to make sure it doesn't accidentally delete the instance line

eg, on corfur A12:
        <fqname>@1.0::IComponentStore/default1</fqname>

on fogos A14:
        <fqname>@1.0::IComponentStore/default9</fqname>

Change-Id: I0c55a9781b398601ecbd6be7c327036fe4b1ac42
This commit is contained in:
Marc Bourgoin 2024-09-30 20:16:00 +05:30 committed by Anand S
parent 624980f670
commit 251556afea
No known key found for this signature in database
GPG key ID: 3B2983FA448B3D61

View file

@ -71,7 +71,7 @@ function blob_fixup() {
sed -i "s#/system/#/system_ext/#" "${2}" sed -i "s#/system/#/system_ext/#" "${2}"
;; ;;
vendor/etc/vintf/manifest/vendor.dolby.media.c2@1.0-service.xml) vendor/etc/vintf/manifest/vendor.dolby.media.c2@1.0-service.xml)
sed -ni '/default1/!p' "${2}" sed -ni '/default.*fqname/!p' "${2}"
;; ;;
esac esac
} }