forked from neonmicky/android_device_xiaomi_tissot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extract-files.sh
executable file
·35 lines (30 loc) · 943 Bytes
/
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
#!/bin/bash
#
# Copyright (C) 2018-2020 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
function blob_fixup() {
case "${1}" in
vendor/lib64/libril-qc-hal-qmi.so)
"${PATCHELF}" --replace-needed "libprotobuf-cpp-full.so" "libprotobuf-cpp-full-v29.so" "${2}"
;;
vendor/lib64/[email protected])
"${PATCHELF_0_8}" --remove-needed "libprotobuf-cpp-lite.so" "${2}"
;;
vendor/lib/libmmcamera2_sensor_modules.so)
sed -i 's|/system/etc/camera/|/vendor/etc/camera/|g' "${2}"
;;
esac
}
# 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" "$@"