From bc7afa0f644b020160e3219a3551dbe775db5b33 Mon Sep 17 00:00:00 2001 From: Sebastiano Barezzi Date: Mon, 13 Sep 2021 14:13:04 +0200 Subject: [PATCH] sdm660-common: Import IR HALs Change-Id: Iffd8855f0971997792cb9b0d6db818772c339e24 Signed-off-by: clarencelol Signed-off-by: OdSazib --- extract-files.sh | 1 + proprietary-files-ir.txt | 5 +++++ setup-makefiles.sh | 2 ++ 3 files changed, 8 insertions(+) create mode 100644 proprietary-files-ir.txt diff --git a/extract-files.sh b/extract-files.sh index 8bc703e1..ad26b21d 100755 --- a/extract-files.sh +++ b/extract-files.sh @@ -115,6 +115,7 @@ setup_vendor "$DEVICE_COMMON" "$VENDOR" "$ROOT" true $CLEAN_VENDOR if [[ "$ONLY_DEVICE" = "false" ]] && [[ -s "${COMMON_DIR}"/proprietary-files.txt ]]; then extract "$COMMON_DIR"/proprietary-files.txt "$SRC" "${KANG}" --section "${SECTION}" + extract "$COMMON_DIR"/proprietary-files-ir.txt "$SRC" "${KANG}" --section "${SECTION}" fi if [[ "$ONLY_COMMON" = "false" ]] && [[ -s "${DEVICE_DIR}"/proprietary-files.txt ]]; then if [[ ! "$IS_COMMON" = "true" ]]; then diff --git a/proprietary-files-ir.txt b/proprietary-files-ir.txt new file mode 100644 index 00000000..64bcb17a --- /dev/null +++ b/proprietary-files-ir.txt @@ -0,0 +1,5 @@ +# ConsumerIR (lirc) - from jason V12.0.1.0.PCHCNXM +vendor/lib64/hw/consumerir.default.so:vendor/lib64/hw/consumerir.lirc.sdm660.so|8c614f98e2a42b5ba9e148c01b3d69e7fb59ce1d + +# ConsumerIR (spi) - from jasmine V11.0.28.0.QDIMIXM +vendor/lib64/hw/consumerir.default.so:vendor/lib64/hw/consumerir.spi.sdm660.so|d1f275a91557dfab52e82906986c5094fe078722 diff --git a/setup-makefiles.sh b/setup-makefiles.sh index 78d456b0..33257199 100755 --- a/setup-makefiles.sh +++ b/setup-makefiles.sh @@ -46,6 +46,8 @@ if ([[ "$ONLY_DEVICE" = "false" ]] || [[ -z "$ONLY_DEVICE" ]]) && [[ -s "${COMMO write_headers "$GUARDED_DEVICES_COMMON" # The common blobs write_makefiles "$COMMON_DIR"/proprietary-files.txt true + # IR blobs + write_makefiles "$COMMON_DIR"/proprietary-files-ir.txt true # Finish write_footers fi