-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract-files.sh
executable file
·40 lines (34 loc) · 1.09 KB
/
extract-files.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
#
# Copyright (C) 2018-2020 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
function blob_fixup() {
case "${1}" in
vendor/lib64/libvendor.goodix.hardware.fingerprint@1.0-service.so)
"${PATCHELF_0_17_2}" --remove-needed "libprotobuf-cpp-lite.so" "${2}"
;;
vendor/lib/libmmcamera2_sensor_modules.so)
sed -i 's|/system/etc/camera/|/vendor/etc/camera/|g' "${2}"
;;
vendor/lib64/libvendor.goodix.hardware.fingerprint@1.0.so)
"${PATCHELF_0_17_2}" --replace-needed "libhidlbase.so" "libhidlbase-v32.so" "${2}"
;;
esac
# For all ELF files
if [[ "${1}" =~ ^.*(\.so|\/bin\/.*)$ ]]; then
"${PATCHELF_0_17_2}" --replace-needed "libstdc++.so" "libstdc++_vendor.so" "${2}"
fi
}
# If we're being sourced by the common script that we called,
# stop right here. No need to go down the rabbit hole.
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then
return
fi
set -e
# Required!
export DEVICE=tissot
export DEVICE_COMMON=msm8953-common
export VENDOR=xiaomi
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"