Files
device_oplus_camera/setup-makefiles.sh
pjgowtham c25fba9fc1 Update extraction scripts and setup ELF checks
Also move odm/vendor libraries to device specific repos
2024-11-08 14:27:20 +05:30

60 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
#
# SPDX-FileCopyrightText: 2016 The CyanogenMod Project
# SPDX-FileCopyrightText: 2017-2024 The LineageOS Project
# SPDX-License-Identifier: Apache-2.0
#
set -e
DEVICE=camera
VENDOR=oplus
# 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}"
function lib_to_package_fixup_system_ext_variants() {
if [ "$2" != "system_ext" ]; then
return 1
fi
case "$1" in
libSuperTextWrapper | \
libXDocProcessSDK | \
libYTCommon | \
libmpbase)
echo "$1_system_ext"
;;
*)
return 1
;;
esac
}
function lib_to_package_fixup() {
lib_to_package_fixup_clang_rt_ubsan_standalone "$1" ||
lib_to_package_fixup_proto_3_9_1 "$1" ||
lib_to_package_fixup_system_ext_variants "$@"
}
# Initialize the helper
setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}"
# Warning headers and guards
write_headers
write_makefiles "${MY_DIR}/proprietary-files.txt"
# Finish
write_footers