Files
device_xiaomi_cmi/extract-files.sh
Daniel Banacki 0c5ea95d02 umi: Refactor umi -> cmi
Change-Id: I77ecd8e8714d6dd920e702f3a33652fa5716a674
2024-07-05 21:13:12 +02:00

36 lines
951 B
Bash
Executable File

#!/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/etc/init/init.batterysecret.rc)
sed -i "/seclabel u:r:batterysecret:s0/d" "${2}"
;;
vendor/lib64/camera/components/com.mi.node.watermark.so)
"${PATCHELF}" --add-needed "libpiex_shim.so" "${2}"
;;
vendor/lib64/vendor.qti.hardware.camera.postproc@1.0-service-impl.so)
"${SIGSCAN}" -p "9A 0A 00 94" -P "1F 20 03 D5" -f "${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=cmi
export DEVICE_COMMON=sm8250-common
export VENDOR=xiaomi
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"