diff options
Diffstat (limited to 'extract-files.sh')
-rwxr-xr-x | extract-files.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extract-files.sh b/extract-files.sh index dd96c21..5f7c03f 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -106,6 +106,11 @@ function blob_fixup() { vendor/bin/mm-qcamera-daemon) sed -i "s|/data/vendor/camera/cam_socket%d|/data/vendor/qcam/camer_socket%d|g" "${2}" ;; + + # Remove libmedia.so dependency from lib-dplmedia.so + vendor/lib64/lib-dplmedia.so) + patchelf --remove-needed libmedia.so "${2}" + ;; esac } |