g12: Fixup PQModule typo
authorNolen Johnson <johnsonnolen@gmail.com>
Thu, 23 May 2024 21:05:04 +0000 (17:05 -0400)
committerNolen Johnson <johnsonnolen@gmail.com>
Thu, 23 May 2024 21:05:29 +0000 (21:05 +0000)
* Fixes pixelation on bootloader splash screen for some.

Change-Id: I3643ec8cfb00dd59296d8566f55daba46f6f1274
(cherry picked from commit 1c2314e43f93aab57e64ab764b675b046cd3ccc9)

extract-files.sh

index 72a3c2db99e6e64091b372dd90a4453c977222af..7621fd4deb2eb1b55a8b04c43e0696cf92ce9520 100755 (executable)
@@ -60,12 +60,15 @@ fi
 
 function blob_fixup() {
      case "${1}" in
+        odm/etc/tvconfig/pq/pq_default.ini)
+             sed -i 's/pq.AllPQMoudle.en/pq.AllPQModule.en/g' "${2}"
+             ;;
         vendor/etc/init/fs.rc)
              sed -i '/media 0770 media_rw media_rw/d' "${2}"
              sed -i '/setprop ro.crypto.fuse_sdcard true/d' "${2}"
              ;;
         vendor/etc/init/tee-supplicant.rc)
-             sed -i s#/vendor/lib/#/vendor/lib/modules/#g "${2}"
+             sed -i 's#/vendor/lib/#/vendor/lib/modules/#g' "${2}"
              ;;
      esac
  }