Skip to content
Snippets Groups Projects
Commit 05c1c2f6 authored by LMO GerritBot's avatar LMO GerritBot
Browse files

Merge branch lineage-21 from LineageOS into fourteen

parents 03b728af a75367a9
Branches ten
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ PRODUCT_PACKAGES += \
# PowerShare
PRODUCT_PACKAGES += \
vendor.lineage.powershare@1.0-service.xiaomi
vendor.lineage.powershare@1.0-service.default
# Sensors
PRODUCT_PACKAGES += \
......
#!/bin/bash
#
# Copyright (C) 2023 The LineageOS Project
#
# SPDX-FileCopyrightText: 2016 The CyanogenMod Project
# SPDX-FileCopyrightText: 2017-2024 The LineageOS Project
# SPDX-License-Identifier: Apache-2.0
#
......@@ -9,21 +9,35 @@ function blob_fixup() {
case "${1}" in
vendor/etc/camera/pureShot_parameter.xml \
|vendor/etc/camera/pureView_parameter.xml)
[ "$2" = "" ] && return 0
sed -i 's/=\([0-9]\+\)>/="\1">/g' "${2}"
;;
vendor/lib64/hw/camera.qcom.so)
[ "$2" = "" ] && return 0
sed -i "s/\x73\x74\x5F\x6C\x69\x63\x65\x6E\x73\x65\x2E\x6C\x69\x63/\x63\x61\x6D\x65\x72\x61\x5F\x63\x6E\x66\x2E\x74\x78\x74/g" "${2}"
;;
vendor/etc/camera/star_motiontuning.xml|vendor/etc/camera/mars_motiontuning.xml)
[ "$2" = "" ] && return 0
sed -i 's/xml=version/xml\ version/g' "${2}"
;;
vendor/lib64/hw/camera.xiaomi.so)
[ "$2" = "" ] && return 0
"${SIGSCAN}" -p "5e 07 00 94" -P "1F 20 03 D5" -f "${2}"
;;
vendor/lib64/vendor.xiaomi.hardware.cameraperf@1.0-impl.so)
[ "$2" = "" ] && return 0
"${SIGSCAN}" -p "21 00 80 52 7c 00 00 94" -P "21 00 80 52 1F 20 03 D5" -f "${2}"
;;
*)
return 1
;;
esac
return 0
}
function blob_fixup_dry() {
blob_fixup "$1" ""
}
# If we're being sourced by the common script that we called,
......@@ -34,9 +48,9 @@ fi
set -e
# Required!
export DEVICE=mars
export DEVICE_COMMON=sm8350-common
export VENDOR=xiaomi
export VENDOR_COMMON=${VENDOR}
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@"
"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/extract-files.sh" "$@"
#!/bin/bash
#
# Copyright (C) 2023 The LineageOS Project
#
# SPDX-FileCopyrightText: 2016 The CyanogenMod Project
# SPDX-FileCopyrightText: 2017-2024 The LineageOS Project
# SPDX-License-Identifier: Apache-2.0
#
# 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
# Required!
export DEVICE=mars
export DEVICE_COMMON=sm8350-common
export VENDOR=xiaomi
export VENDOR_COMMON=${VENDOR}
"./../../${VENDOR}/${DEVICE_COMMON}/setup-makefiles.sh" "$@"
"./../../${VENDOR_COMMON}/${DEVICE_COMMON}/setup-makefiles.sh" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment