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:24 +0000 (21:05 +0000)
* Fixes pixelation on bootloader splash screen for some.

Change-Id: I3643ec8cfb00dd59296d8566f55daba46f6f1274

extract-files.sh

index 08c7ade71d819636d5de336d5f5a82a94a585888..d9d5191242ee1bb1b35a6a4ff69d0ba1f073108b 100755 (executable)
@@ -64,12 +64,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
  }