diff options
-rwxr-xr-x | extract-files.sh | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/extract-files.sh b/extract-files.sh index ababc8f..96e4a74 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -49,10 +49,18 @@ if [ -z "${SRC}" ]; then SRC="adb" fi -# Initialize the helper for common device +function blob_fixup() { + case "${1}" in + vendor/lib64/camera/components/com.qti.node.mialgocontrol.so) + llvm-strip --strip-debug "${2}" + ;; + esac +} + +# Initialize the helper setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}" true "${CLEAN_VENDOR}" extract "${MY_DIR}/proprietary-files.txt" "${SRC}" \ "${KANG}" --section "${SECTION}" -"${MY_DIR}/setup-makefiles.sh"
\ No newline at end of file +"${MY_DIR}/setup-makefiles.sh" |