From 251556afea65f36eac5e90d156b15aa569e24667 Mon Sep 17 00:00:00 2001 From: Marc Bourgoin Date: Mon, 30 Sep 2024 20:16:00 +0530 Subject: [PATCH] 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: @1.0::IComponentStore/default1 on fogos A14: @1.0::IComponentStore/default9 Change-Id: I0c55a9781b398601ecbd6be7c327036fe4b1ac42 --- extract-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract-files.sh b/extract-files.sh index 44fe101..b1c0bfe 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -71,7 +71,7 @@ function blob_fixup() { sed -i "s#/system/#/system_ext/#" "${2}" ;; vendor/etc/vintf/manifest/vendor.dolby.media.c2@1.0-service.xml) - sed -ni '/default1/!p' "${2}" + sed -ni '/default.*fqname/!p' "${2}" ;; esac }