-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract-files.sh
executable file
·42 lines (37 loc) · 1.32 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
41
42
#!/bin/bash
#
# Copyright (C) 2016 The CyanogenMod Project
# Copyright (C) 2017-2020 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
function blob_fixup() {
case "${1}" in
vendor/lib64/libexynoscamera3.so)
xxd -p "${2}" | tr -d \\n > "${2}".hex
# NOP SecCameraIPCtoRIL::enable m_sendRequest()
sed -i "s/140000940a000014/1f2003d50a000014/g" "${2}".hex
# NOP SecCameraIPCtoRIL::disable m_sendRequest()
sed -i "s/a8ffff970a000014/1f2003d50a000014/g" "${2}".hex
# enable RAW on all cameras
sed -i "s/ab022036/1f2003d5/g" "${2}".hex
xxd -r -p "${2}".hex > "${2}"
rm "${2}".hex
;;
vendor/lib*/sensors.*.so)
"${PATCHELF}" --remove-needed libhidltransport.so "${2}"
"${PATCHELF}" --replace-needed libutils.so libutils-v32.so "${2}"
sed -i 's/_ZN7android6Thread3runEPKcim/_ZN7utils326Thread3runEPKcim/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
export DEVICE=y2s
export DEVICE_COMMON=universal9830-common
export VENDOR=samsung
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"