proprietary_vendor_xiaomi_c.../extract-files.sh

73 lines
1.6 KiB
Bash
Raw Normal View History

Restructure to vendor/xiaomi/camera Import from device/xiaomi/lisa-miuicamera: commit 33f736aa61e224998d5c121f6c38c944e49fea8d Author: Adithya R <gh0strider.2k18.reborn@gmail.com> Date: Fri Apr 21 16:54:19 2023 +0530 lisa-miuicamera: Update to V14.0.3.0.TKOMIXM commit 569341615b88bf864c135356a11a5338e058c9d4 Author: Adithya R <gh0strider.2k18.reborn@gmail.com> Date: Tue Jan 31 10:00:48 2023 +0530 lisa-miuicamera: Label libSNPE and deps as sphal We already have these in public.libraries.txt, just needs to be labeled as sphal so that Miui Camera can load it for clone mode. 01-30 23:10:20.988 5067 5067 I auditd : type=1400 audit(0.0:2944): avc: denied { read } for comm="CameraSetup" name="libSNPE.so" dev="dm-4" ino=2242 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0 app=com.android.camera 01-30 23:10:20.988 5067 5067 W CameraSetup: type=1400 audit(0.0:2944): avc: denied { read } for name="libSNPE.so" dev="dm-4" ino=2242 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_file:s0 tclass=file permissive=0 app=com.android.camera 01-30 23:10:20.992 5067 5121 E CloneSDK: Load native library failed: java.lang.UnsatisfiedLinkError: dlopen failed: library "libSNPE.so" not found: needed by /data/user/0/com.android.camera/app_qigsaw/5.0.0.0/movielens/31.0.0@31/nativeLib/arm64-v8a/libfenshen_snpe.so in namespace classloader-namespace-shared commit d1ad3e40dd5c00fb97bb12d02668978698339599 Author: Adithya R <gh0strider.2k18.reborn@gmail.com> Date: Mon Jan 23 22:21:23 2023 +0530 lisa-miuicamera: Initial commit
2023-04-23 03:29:21 +00:00
#!/bin/bash
#
# Copyright (C) 2016 The CyanogenMod Project
# Copyright (C) 2017-2020 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
set -e
DEVICE=camera
VENDOR=xiaomi
# 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}/../../.."
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}"
;;
esac
shift
done
if [ -z "${SRC}" ]; then
SRC="adb"
fi
function blob_fixup() {
case "${1}" in
system/lib64/libgui-xiaomi.so)
patchelf --set-soname libgui-xiaomi.so "${2}"
;;
system/lib64/libcamera_algoup_jni.xiaomi.so|system/lib64/libcamera_mianode_jni.xiaomi.so)
patchelf --replace-needed libgui.so libgui-xiaomi.so "${2}"
;;
esac
}
# 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"