proprietary_vendor_xiaomi_m.../extract-files.sh

90 lines
2.1 KiB
Bash
Raw Permalink Normal View History

2023-07-09 17:17:33 -04:00
#!/bin/bash
#
# SPDX-FileCopyrightText: 2016 The CyanogenMod Project
# SPDX-FileCopyrightText: 2017-2024 The LineageOS Project
2023-07-09 17:17:33 -04:00
# SPDX-License-Identifier: Apache-2.0
#
set -e
DEVICE=vendor
VENDOR=xiaomi/miuicamera-lisa
2023-07-09 17:17:33 -04:00
# Load extract_utils and do some sanity checks
MY_DIR="${BASH_SOURCE%/*}"
if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi
ANDROID_ROOT="${MY_DIR}/../../.."
export TARGET_ENABLE_CHECKELF=true
# If XML files don't have comments before the XML header, use this flag
# Can still be used with broken XML files by using blob_fixup
export TARGET_DISABLE_XML_FIXING=true
2023-07-09 17:17:33 -04:00
HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh"
if [ ! -f "${HELPER}" ]; then
echo "Unable to find helper script at ${HELPER}"
exit 1
fi
source "${HELPER}"
# Default to sanitizing the vendor folder before extraction
CLEAN_VENDOR=true
KANG=
SECTION=
while [ "${#}" -gt 0 ]; do
case "${1}" in
-n | --no-cleanup)
CLEAN_VENDOR=false
;;
-k | --kang)
KANG="--kang"
;;
-s | --section)
SECTION="${2}"
shift
CLEAN_VENDOR=false
;;
*)
SRC="${1}"
;;
2023-07-09 17:17:33 -04:00
esac
shift
done
if [ -z "${SRC}" ]; then
SRC="adb"
fi
function blob_fixup() {
case "${1}" in
system/lib64/libcamera_algoup_jni.xiaomi.so|system/lib64/libcamera_mianode_jni.xiaomi.so)
[ "$2" = "" ] && return 0
grep -q "libgui_shim_miuicamera.so" "${2}" || "${PATCHELF}" --add-needed "libgui_shim_miuicamera.so" "${2}"
2023-07-09 17:17:33 -04:00
;;
system/lib64/libmicampostproc_client.so)
[ "$2" = "" ] && return 0
2023-07-09 17:17:33 -04:00
"${PATCHELF}" --remove-needed "libhidltransport.so" "${2}"
;;
*)
return 1
;;
2023-07-09 17:17:33 -04:00
esac
return 0
}
function blob_fixup_dry() {
blob_fixup "$1" ""
2023-07-09 17:17:33 -04:00
}
# Initialize the helper
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}" false "${CLEAN_VENDOR}"
extract "${MY_DIR}/proprietary-files.txt" "${SRC}" "${KANG}" --section "${SECTION}"
"${MY_DIR}/setup-makefiles.sh"