c26b57ac9f
We do that from sepolicy label Change-Id: I0aa6778bca6c6175eb41364d4932a1ee868f7b21
36 lines
947 B
Bash
Executable File
36 lines
947 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/etc/init/init.mi_thermald.rc)
|
|
sed -i "/seclabel u:r:mi_thermald:s0/d" "${2}"
|
|
;;
|
|
vendor/lib64/camera/components/com.qti.node.watermark.so)
|
|
grep -q "libpiex_shim.so" "${2}" || "${PATCHELF}" --add-needed "libpiex_shim.so" "${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=sweet
|
|
export DEVICE_COMMON=sm6150-common
|
|
export VENDOR=xiaomi
|
|
|
|
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"
|