From 35a0f86366656f67a4567a11f2ed5ea9f2b2c81f Mon Sep 17 00:00:00 2001 From: Marc Bourgoin Date: Mon, 23 Sep 2024 22:44:12 -0600 Subject: [PATCH] sm7325-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 dubai A13: @1.0::IComponentStore/default1 on dubai 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 a7241a4..c32f73d 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -75,7 +75,7 @@ function blob_fixup() { ;; vendor/etc/vintf/manifest/vendor.dolby.media.c2@1.0-service.xml) [ "$2" = "" ] && return 0 - sed -ni '/default1/!p' "${2}" + sed -ni '/default.*fqname/!p' "${2}" ;; *) return 1