2018-07-12 22:11:03 -04:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018 The LineageOS Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# This file sets variables that control the way modules are built
|
|
|
|
# thorughout the system. It should not be used to conditionally
|
|
|
|
# disable makefiles (the proper mechanism to control what gets
|
|
|
|
# included in a build is to use PRODUCT_PACKAGES in a product
|
|
|
|
# definition file).
|
|
|
|
#
|
2017-03-17 10:24:32 -04:00
|
|
|
|
2019-08-15 11:35:17 -04:00
|
|
|
# Inherit from those products. Most specific first.
|
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
|
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk)
|
|
|
|
$(call inherit-product-if-exists, build/target/product/embedded.mk)
|
|
|
|
|
2019-09-16 04:34:32 -04:00
|
|
|
# Enable updating of APEXes
|
2020-05-07 07:29:30 -04:00
|
|
|
ifeq ($(ENABLE_APEX), true)
|
2019-09-16 04:34:32 -04:00
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
|
2020-05-07 07:29:30 -04:00
|
|
|
endif
|
2019-09-16 04:34:32 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Inherit proprietary files
|
2019-08-06 14:05:02 -04:00
|
|
|
$(call inherit-product, vendor/xiaomi/sdm660-common/sdm660-common-vendor.mk)
|
2018-12-31 10:28:57 -05:00
|
|
|
$(call inherit-product-if-exists, vendor/xiaomi/MiuiCamera/config.mk)
|
2019-09-16 02:49:14 -04:00
|
|
|
$(call inherit-product-if-exists, vendor/gapps/common/common-vendor.mk)
|
2018-08-05 04:45:35 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Common Tree Path
|
2019-08-06 14:05:02 -04:00
|
|
|
COMMON_PATH := device/xiaomi/sdm660-common
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2018-12-08 05:35:00 -05:00
|
|
|
# Inherit properties
|
2019-12-20 12:17:54 -05:00
|
|
|
$(call inherit-product, $(COMMON_PATH)/common_prop.mk)
|
2018-07-12 22:11:03 -04:00
|
|
|
|
2020-05-03 12:14:16 -04:00
|
|
|
# A/B
|
|
|
|
ifeq ($(ENABLE_AB), true)
|
|
|
|
AB_OTA_POSTINSTALL_CONFIG += \
|
|
|
|
RUN_POSTINSTALL_system=true \
|
|
|
|
POSTINSTALL_PATH_system=system/bin/otapreopt_script \
|
|
|
|
FILESYSTEM_TYPE_system=ext4 \
|
|
|
|
POSTINSTALL_OPTIONAL_system=true
|
|
|
|
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
otapreopt_script
|
|
|
|
|
|
|
|
# Boot control
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
android.hardware.boot@1.0-impl \
|
|
|
|
android.hardware.boot@1.0-impl.recovery \
|
|
|
|
android.hardware.boot@1.0-service \
|
|
|
|
bootctrl.sdm660 \
|
|
|
|
bootctrl.sdm660.recovery
|
|
|
|
|
|
|
|
# Boot control debug
|
|
|
|
PRODUCT_PACKAGES_DEBUG += \
|
|
|
|
bootctl
|
|
|
|
|
|
|
|
# Update engine
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
update_engine \
|
|
|
|
update_engine_sideload \
|
|
|
|
update_verifier
|
|
|
|
|
|
|
|
PRODUCT_HOST_PACKAGES += \
|
|
|
|
brillo_update_payload
|
|
|
|
|
|
|
|
PRODUCT_PACKAGES_DEBUG += \
|
|
|
|
update_engine_client
|
|
|
|
endif
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Audio
|
|
|
|
PRODUCT_PACKAGES += \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.audio@5.0-impl \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.audio@2.0-service \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.audio.effect@5.0-impl \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.audio.effect@2.0-service \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.soundtrigger@2.2-impl\
|
2018-07-12 22:11:03 -04:00
|
|
|
audio.a2dp.default \
|
|
|
|
audio_amplifier.sdm660 \
|
|
|
|
audio.primary.sdm660 \
|
|
|
|
audio.r_submix.default \
|
|
|
|
audio.usb.default \
|
2020-01-31 07:59:27 -05:00
|
|
|
liba2dpoffload \
|
2018-07-12 22:11:03 -04:00
|
|
|
libaudio-resampler \
|
2020-01-31 07:59:27 -05:00
|
|
|
libhdmiedid \
|
|
|
|
libhfp \
|
|
|
|
libsndmonitor \
|
2018-07-12 22:11:03 -04:00
|
|
|
libqcompostprocbundle \
|
|
|
|
libqcomvisualizer \
|
|
|
|
libqcomvoiceprocessing \
|
|
|
|
libvolumelistener \
|
2020-05-24 23:15:11 -04:00
|
|
|
tinymix
|
2017-04-18 08:10:35 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Audio Configs
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/audio/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/audio_output_policy.conf:$(TARGET_COPY_OUT_VENDOR)/etc/audio_output_policy.conf \
|
2020-05-24 23:15:11 -04:00
|
|
|
$(COMMON_PATH)/configs/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/audio_policy_configuration.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/audio_policy_configuration_a2dp_offload_disabled.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/audio_policy_configuration_a2dp_offload_disabled_qti.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/audio_policy_configuration_a2dp_offload_disabled.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/bluetooth_qti_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_qti_audio_policy_configuration.xml \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/audio/audio_tuning_mixer.txt:$(TARGET_COPY_OUT_VENDOR)/etc/audio_tuning_mixer.txt \
|
|
|
|
$(COMMON_PATH)/configs/audio/graphite_ipc_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/graphite_ipc_platform_info.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/listen_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/listen_platform_info.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/sound_trigger_mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/sound_trigger_mixer_paths.xml \
|
|
|
|
$(COMMON_PATH)/configs/audio/sound_trigger_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/sound_trigger_platform_info.xml
|
|
|
|
|
|
|
|
# Audio Policy
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2019-10-11 22:12:37 -04:00
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/a2dp_in_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_in_audio_policy_configuration.xml \
|
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \
|
2018-07-12 22:11:03 -04:00
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml \
|
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
|
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
|
|
|
|
$(TOPDIR)frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml
|
2017-08-09 03:01:08 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# ANT+
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
AntHalService \
|
|
|
|
antradio_app \
|
|
|
|
com.dsi.ant.antradio_library \
|
|
|
|
libantradio
|
2017-08-09 03:01:08 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# ANT Permission
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
external/ant-wireless/antradio-library/com.dsi.ant.antradio_library.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.dsi.ant.antradio_library.xml
|
2017-04-07 06:19:23 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# AuthSecret
|
2019-10-26 03:33:35 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
android.hardware.authsecret@1.0-service
|
|
|
|
|
2018-04-26 00:26:43 -04:00
|
|
|
# Biometrics
|
|
|
|
PRODUCT_PACKAGES += \
|
2019-08-06 14:05:02 -04:00
|
|
|
android.hardware.biometrics.fingerprint@2.1-service.xiaomi_sdm660
|
2018-04-26 00:26:43 -04:00
|
|
|
|
2017-11-06 07:41:15 -05:00
|
|
|
# Bluetooth
|
|
|
|
PRODUCT_PACKAGES += \
|
2020-05-24 23:15:11 -04:00
|
|
|
BluetoothQti \
|
2019-12-20 12:17:54 -05:00
|
|
|
audio.bluetooth.default \
|
|
|
|
android.hardware.bluetooth.audio@2.0-impl \
|
2020-02-02 07:36:14 -05:00
|
|
|
liba2dpoffload \
|
2020-05-24 23:15:11 -04:00
|
|
|
libbtconfigstore \
|
2019-12-30 09:47:10 -05:00
|
|
|
libbthost_if \
|
2020-02-02 07:36:14 -05:00
|
|
|
libhdmiedid \
|
|
|
|
libhfp \
|
|
|
|
libldacBT_dec \
|
|
|
|
libsndmonitor \
|
2020-05-24 23:15:11 -04:00
|
|
|
vendor.qti.hardware.bluetooth_audio@2.0.vendor \
|
|
|
|
vendor.qti.hardware.btconfigstore@1.0.vendor
|
2017-11-06 07:41:15 -05:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Boot animation
|
|
|
|
TARGET_BOOTANIMATION_SIZE := 1080p
|
|
|
|
|
|
|
|
# Broadcastradio
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
android.hardware.broadcastradio@1.0-impl
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Camera
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2020-02-02 06:33:37 -05:00
|
|
|
android.hardware.camera.device@3.4 \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.camera.provider@2.4-impl \
|
2018-03-29 14:45:23 -04:00
|
|
|
android.hardware.camera.provider@2.4-service \
|
2020-02-02 06:33:37 -05:00
|
|
|
android.hardware.camera.provider@2.5 \
|
2020-01-02 07:00:15 -05:00
|
|
|
vendor.qti.hardware.camera.device@1.0 \
|
|
|
|
Snap
|
2018-07-12 22:11:03 -04:00
|
|
|
|
2019-03-12 22:56:00 -04:00
|
|
|
# Codec2 modules
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
com.android.media.swcodec \
|
|
|
|
libsfplugin_ccodec
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Connectivity Engine support (CNE)
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
cneapiclient \
|
|
|
|
com.quicinc.cne \
|
|
|
|
services-ext
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Configstore
|
|
|
|
PRODUCT_PACKAGES += \
|
2020-02-07 14:06:49 -05:00
|
|
|
android.hardware.configstore@1.1-service
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2019-12-23 18:30:20 -05:00
|
|
|
# Dalvik
|
|
|
|
$(call inherit-product, frameworks/native/build/phone-xhdpi-4096-dalvik-heap.mk )
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Display
|
|
|
|
PRODUCT_PACKAGES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
android.frameworks.displayservice@1.0 \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.graphics.allocator@2.0-impl \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.graphics.allocator@2.0-service \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.graphics.composer@2.1-impl \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.graphics.composer@2.1-service \
|
2019-12-20 12:17:54 -05:00
|
|
|
android.hardware.graphics.mapper@2.0-impl-2.1 \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.memtrack@1.0-impl \
|
|
|
|
android.hardware.memtrack@1.0-service \
|
2019-12-20 12:17:54 -05:00
|
|
|
gralloc.sdm660 \
|
|
|
|
hwcomposer.sdm660 \
|
|
|
|
memtrack.sdm660 \
|
|
|
|
libdisplayconfig \
|
|
|
|
liboverlay \
|
|
|
|
libqdMetaData \
|
|
|
|
libqdMetaData.system \
|
|
|
|
libtinyxml \
|
2019-12-12 04:58:40 -05:00
|
|
|
vendor.display.config@1.9 \
|
|
|
|
vendor.display.config@1.9_vendor
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 23:00:59 -04:00
|
|
|
# Doze
|
2019-07-09 17:31:00 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
XiaomiDoze
|
2018-07-12 23:00:59 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# DRM
|
|
|
|
PRODUCT_PACKAGES += \
|
2018-02-02 02:58:27 -05:00
|
|
|
android.hardware.drm@1.0-impl \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.hardware.drm@1.0-service \
|
2019-09-08 12:05:06 -04:00
|
|
|
android.hardware.drm@1.2-service.clearkey
|
2018-01-31 13:29:05 -05:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Folio
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
folio_daemon
|
2017-08-09 03:06:59 -04:00
|
|
|
|
2018-10-18 10:09:51 -04:00
|
|
|
# Freeform Multiwindow
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
frameworks/native/data/etc/android.software.freeform_window_management.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.freeform_window_management.xml
|
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Fstab
|
2017-03-29 13:17:06 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
fstab.qcom
|
2017-03-29 13:17:06 -04:00
|
|
|
|
2019-10-13 10:02:01 -04:00
|
|
|
# fwk-detect
|
|
|
|
PRODUCT_PACKAGES += \
|
2019-01-09 04:04:11 -05:00
|
|
|
libqti_vndfwk_detect \
|
|
|
|
libqti_vndfwk_detect.vendor
|
2019-10-13 10:02:01 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# GMS
|
|
|
|
PRODUCT_GMS_CLIENTID_BASE := android-xiaomi
|
2019-10-13 10:02:01 -04:00
|
|
|
|
2019-10-09 07:54:50 -04:00
|
|
|
# GPS / Location
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
android.hardware.gnss@2.0-impl-qti \
|
|
|
|
android.hardware.gnss@2.0-service-qti \
|
|
|
|
libbatching \
|
|
|
|
libgeofencing \
|
|
|
|
libgnss \
|
|
|
|
libsensorndkbridge \
|
|
|
|
libwifi-hal-ctrl
|
|
|
|
|
2020-01-14 12:19:32 -05:00
|
|
|
# GPS Config
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2020-05-27 05:50:50 -04:00
|
|
|
$(COMMON_PATH)/gps/etc/apdr.conf:$(TARGET_COPY_OUT_VENDOR)/etc/apdr.conf \
|
2020-02-02 04:32:42 -05:00
|
|
|
$(COMMON_PATH)/gps/etc/flp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/flp.conf \
|
|
|
|
$(COMMON_PATH)/gps/etc/gps.conf:$(TARGET_COPY_OUT_VENDOR)/etc/gps.conf \
|
|
|
|
$(COMMON_PATH)/gps/etc/izat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/izat.conf \
|
|
|
|
$(COMMON_PATH)/gps/etc/lowi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/lowi.conf \
|
|
|
|
$(COMMON_PATH)/gps/etc/sap.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sap.conf \
|
|
|
|
$(COMMON_PATH)/gps/etc/xtwifi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/xtwifi.conf
|
2018-07-12 22:11:03 -04:00
|
|
|
|
|
|
|
# Healthd
|
|
|
|
PRODUCT_PACKAGES += \
|
2017-09-22 18:16:18 -04:00
|
|
|
android.hardware.health@2.0-service
|
2017-03-28 01:14:56 -04:00
|
|
|
|
2017-12-07 09:15:14 -05:00
|
|
|
# HIDL
|
|
|
|
PRODUCT_PACKAGES += \
|
2018-09-08 06:19:12 -04:00
|
|
|
android.hidl.base@1.0 \
|
|
|
|
android.hidl.base@1.0_vendor
|
2017-12-07 09:15:14 -05:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# IDC
|
|
|
|
PRODUCT_COPY_FILES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/idc/uinput-fpc.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/uinput-fpc.idc \
|
|
|
|
$(COMMON_PATH)/configs/idc/uinput-goodix.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/uinput-goodix.idc
|
|
|
|
|
|
|
|
# IFAAService
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
IFAAService \
|
|
|
|
org.ifaa.android.manager
|
|
|
|
|
|
|
|
# IFAA JAR
|
|
|
|
PRODUCT_BOOT_JARS += \
|
|
|
|
org.ifaa.android.manager
|
|
|
|
|
|
|
|
# IMS
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
ims-ext-common_system \
|
|
|
|
ims_ext_common.xml \
|
|
|
|
|
|
|
|
# IMS JAR
|
|
|
|
PRODUCT_BOOT_JARS += \
|
|
|
|
ims-ext-common_system
|
2018-07-12 22:11:03 -04:00
|
|
|
|
|
|
|
# Init
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
init.class_main.sh \
|
2018-03-08 09:45:45 -05:00
|
|
|
init.goodix.sh \
|
2018-07-12 22:11:03 -04:00
|
|
|
init.msm.usb.configfs.rc \
|
|
|
|
init.qcom.post_boot.sh \
|
2018-11-18 11:35:43 -05:00
|
|
|
init.qcom.early_boot.sh \
|
2018-07-12 22:11:03 -04:00
|
|
|
init.qcom.rc \
|
|
|
|
init.qcom.sh \
|
|
|
|
init.qcom.usb.rc \
|
|
|
|
init.qcom.usb.sh \
|
2018-04-18 16:31:23 -04:00
|
|
|
init.recovery.qcom.rc \
|
2018-07-12 22:11:03 -04:00
|
|
|
init.target.rc \
|
2020-05-04 12:46:24 -04:00
|
|
|
init.xiaomi_parts.rc \
|
2020-04-11 07:04:07 -04:00
|
|
|
init.performance.sdm660.rc \
|
2019-12-20 12:17:54 -05:00
|
|
|
ueventd.qcom.rc
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2020-06-05 06:53:31 -04:00
|
|
|
# FM
|
|
|
|
ifeq ($(BOARD_HAVE_QCOM_FM),true)
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
FM2 \
|
|
|
|
libqcomfm_jni \
|
|
|
|
qcom.fmradio \
|
|
|
|
qcom.fmradio.xml
|
2018-11-18 11:35:43 -05:00
|
|
|
|
2020-06-05 06:53:31 -04:00
|
|
|
PRODUCT_BOOT_JARS += \
|
|
|
|
qcom.fmradio
|
|
|
|
endif
|
|
|
|
|
2019-02-04 20:04:11 -05:00
|
|
|
# Ion
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
libion
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# IPv6
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
ebtables \
|
|
|
|
ethertypes \
|
|
|
|
libebtc
|
2017-04-07 06:19:23 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# IRQ
|
2016-07-07 09:35:22 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2018-08-05 04:45:35 -04:00
|
|
|
$(COMMON_PATH)/configs/msm_irqbalance.conf:$(TARGET_COPY_OUT_VENDOR)/etc/msm_irqbalance.conf
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# IRSC
|
|
|
|
PRODUCT_COPY_FILES += \
|
2018-08-05 04:45:35 -04:00
|
|
|
$(COMMON_PATH)/configs/sec_config:$(TARGET_COPY_OUT_VENDOR)/etc/sec_config
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Keylayout
|
2016-07-07 09:35:22 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2019-01-08 10:59:45 -05:00
|
|
|
$(COMMON_PATH)/configs/keylayout/uinput-fpc.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/uinput-fpc.kl \
|
|
|
|
$(COMMON_PATH)/configs/keylayout/uinput-goodix.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/uinput-goodix.kl
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Lights
|
2016-07-07 09:35:22 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-08-06 14:05:02 -04:00
|
|
|
android.hardware.light@2.0-service.xiaomi_sdm660
|
2017-04-07 06:19:23 -04:00
|
|
|
|
2019-08-14 07:17:45 -04:00
|
|
|
# LiveDisplay native
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
vendor.lineage.livedisplay@2.0-service-sdm
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Media
|
|
|
|
PRODUCT_COPY_FILES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/media/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
|
|
|
|
$(COMMON_PATH)/configs/media/media_codecs_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_performance.xml
|
2017-05-24 01:36:37 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Media Google
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml \
|
|
|
|
frameworks/av/media/libstagefright/data/media_codecs_google_telephony.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_telephony.xml \
|
2020-06-01 04:31:54 -04:00
|
|
|
frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_video.xml
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Media Extensions
|
2017-07-31 04:44:41 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2018-07-12 22:11:03 -04:00
|
|
|
libavmediaserviceextensions \
|
|
|
|
libmediametrics \
|
|
|
|
libregistermsext \
|
|
|
|
mediametrics
|
2017-07-31 04:44:41 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Netutils
|
2018-04-05 09:08:23 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2018-07-12 22:11:03 -04:00
|
|
|
android.system.net.netd@1.0 \
|
|
|
|
libandroid_net \
|
|
|
|
netutils-wrapper-1.0
|
2018-04-05 09:08:23 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# OMX
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
libc2dcolorconvert \
|
|
|
|
libextmedia_jni \
|
|
|
|
libhypv_intercept \
|
|
|
|
libmm-omxcore \
|
|
|
|
libOmxCore \
|
|
|
|
libOmxAacEnc \
|
|
|
|
libOmxAmrEnc \
|
|
|
|
libOmxEvrcEnc \
|
2019-10-31 16:48:06 -04:00
|
|
|
libOmxG711Enc \
|
2018-07-12 22:11:03 -04:00
|
|
|
libOmxQcelp13Enc \
|
|
|
|
libOmxVdec \
|
|
|
|
libOmxVenc \
|
|
|
|
libstagefrighthw
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Overlays
|
|
|
|
DEVICE_PACKAGE_OVERLAYS += \
|
|
|
|
$(COMMON_PATH)/overlay \
|
2020-05-24 23:15:11 -04:00
|
|
|
$(COMMON_PATH)/overlay-lineage \
|
|
|
|
$(COMMON_PATH)/overlay-system
|
2019-12-20 12:17:54 -05:00
|
|
|
|
2020-05-14 02:09:16 -04:00
|
|
|
# RRO configuration
|
|
|
|
TARGET_USES_RRO := true
|
2020-06-29 12:03:25 -04:00
|
|
|
PRODUCT_ENFORCE_RRO_TARGETS := *
|
|
|
|
PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS += \
|
2019-11-01 08:19:07 -04:00
|
|
|
$(COMMON_PATH)/overlay-lineage/lineage-sdk \
|
2019-11-12 16:49:17 -05:00
|
|
|
$(COMMON_PATH)/overlay-lineage/packages/apps/Snap \
|
2020-06-29 12:03:25 -04:00
|
|
|
$(COMMON_PATH)/overlay-system
|
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Permissions
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
frameworks/native/data/etc/android.hardware.audio.low_latency.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.low_latency.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.audio.pro.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.pro.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.camera.full.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.full.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.camera.raw.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.raw.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.location.gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.location.gps.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.opengles.aep.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.opengles.aep.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.telephony.cdma.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.cdma.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.vulkan.level-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.vulkan.compute-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.compute.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.wifi.passpoint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.passpoint.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
|
|
|
|
frameworks/native/data/etc/android.software.ipsec_tunnels.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.ipsec_tunnels.xml \
|
|
|
|
frameworks/native/data/etc/android.software.midi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.midi.xml \
|
|
|
|
frameworks/native/data/etc/android.software.sip.voip.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.sip.voip.xml \
|
|
|
|
frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml \
|
|
|
|
frameworks/native/data/etc/android.software.verified_boot.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.verified_boot.xml \
|
|
|
|
frameworks/native/data/etc/android.software.webview.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.webview.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.opengles.aep.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.opengles.aep.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.vulkan.level-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level-0.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.vulkan.version-1_0_3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_0_3.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Power
|
|
|
|
PRODUCT_PACKAGES += \
|
2019-10-02 10:35:19 -04:00
|
|
|
android.hardware.power@1.2-service-qti
|
2017-11-15 05:09:25 -05:00
|
|
|
|
2018-02-02 16:01:38 -05:00
|
|
|
# Preopt SystemUI
|
|
|
|
PRODUCT_DEXPREOPT_SPEED_APPS += SystemUI
|
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Privapp-Permissions
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
$(COMMON_PATH)/configs/privapp-permission/privapp-permissions-qti-product.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-qti.xml \
|
|
|
|
$(COMMON_PATH)/configs/privapp-permission/privapp-permissions-qti-system.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-qti.xml \
|
|
|
|
$(COMMON_PATH)/configs/privapp-permission/privapp-permissions-hotword.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-hotword.xml
|
|
|
|
|
2018-02-18 17:00:04 -05:00
|
|
|
# Public Libraries
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
$(COMMON_PATH)/configs/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Low power Whitelist
|
2017-03-17 08:24:52 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2018-08-05 04:45:35 -04:00
|
|
|
$(COMMON_PATH)/configs/qti_whitelist.xml:system/etc/sysconfig/qti_whitelist.xml \
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# QMI
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
libjson
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2019-05-31 14:07:08 -04:00
|
|
|
# QTI Performance
|
|
|
|
PRODUCT_COPY_FILES += \
|
2020-05-07 03:04:21 -04:00
|
|
|
$(COMMON_PATH)/configs/perf/perf-profile0.conf:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perf-profile0.conf \
|
|
|
|
$(COMMON_PATH)/configs/perf/perfconfigstore.xml:$(TARGET_COPY_OUT_VENDOR)/etc/perf/perfconfigstore.xml
|
2019-05-31 14:07:08 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# RCS
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
rcs_service_aidl \
|
|
|
|
rcs_service_aidl.xml \
|
|
|
|
rcs_service_api \
|
|
|
|
rcs_service_api.xml
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# RenderScript HAL
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
android.hardware.renderscript@1.0-impl
|
2017-06-12 08:44:14 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# RIL
|
|
|
|
PRODUCT_PACKAGES += \
|
2019-10-08 09:33:32 -04:00
|
|
|
android.hardware.radio@1.4 \
|
2018-12-22 11:39:41 -05:00
|
|
|
android.hardware.radio@1.2 \
|
2020-05-05 10:30:12 -04:00
|
|
|
android.hardware.radio.config@1.1 \
|
2018-12-22 11:39:41 -05:00
|
|
|
android.hardware.secure_element@1.0 \
|
2018-07-12 22:11:03 -04:00
|
|
|
librmnetctl \
|
|
|
|
libxml2 \
|
2019-12-20 12:17:54 -05:00
|
|
|
libprotobuf-cpp-full \
|
2019-09-23 09:17:02 -04:00
|
|
|
qti-telephony-hidl-wrapper \
|
|
|
|
qti_telephony_hidl_wrapper.xml \
|
|
|
|
qti-telephony-utils \
|
|
|
|
qti_telephony_utils.xml \
|
2019-12-20 12:17:54 -05:00
|
|
|
rild \
|
2018-07-12 22:11:03 -04:00
|
|
|
telephony-ext
|
2016-07-07 09:35:22 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# RIL JAR
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_BOOT_JARS += \
|
|
|
|
telephony-ext
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Seccomp policy
|
|
|
|
PRODUCT_COPY_FILES += \
|
2018-08-05 04:45:35 -04:00
|
|
|
$(COMMON_PATH)/seccomp/mediacodec-seccomp.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediacodec.policy \
|
|
|
|
$(COMMON_PATH)/seccomp/mediaextractor-seccomp.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediaextractor.policy
|
2017-03-17 08:24:52 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Sensors
|
2017-04-07 06:19:23 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2020-02-02 06:00:58 -05:00
|
|
|
android.hardware.sensors@1.0-impl \
|
2020-01-14 12:19:32 -05:00
|
|
|
android.hardware.sensors@1.0-service \
|
|
|
|
libsensorndkbridge
|
2017-04-07 06:19:23 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Sensor Config
|
2017-03-17 08:24:52 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf
|
|
|
|
|
|
|
|
# Security Patch
|
|
|
|
BOOT_SECURITY_PATCH := $(PLATFORM_SECURITY_PATCH)
|
|
|
|
|
|
|
|
# Shims
|
|
|
|
PRODUCT_PACKAGES += \
|
2020-01-11 16:18:41 -05:00
|
|
|
camera.sdm660_shim
|
2019-12-20 12:17:54 -05:00
|
|
|
|
|
|
|
# Soong
|
|
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
|
|
$(COMMON_PATH)
|
2017-04-07 06:19:23 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Tetheroffload
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
ipacm \
|
2019-11-12 11:06:43 -05:00
|
|
|
ipacm.rc \
|
2018-07-12 22:11:03 -04:00
|
|
|
IPACM_cfg.xml \
|
|
|
|
libipanat \
|
|
|
|
liboffloadhal
|
2017-12-11 01:44:16 -05:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# TextClassifier smart selection model files
|
|
|
|
PRODUCT_PACKAGES += \
|
2018-10-02 08:00:56 -04:00
|
|
|
textclassifier.bundle1
|
2017-07-18 15:32:51 -04:00
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# Thermal
|
|
|
|
PRODUCT_PACKAGES += \
|
2017-10-10 04:42:48 -04:00
|
|
|
android.hardware.thermal@1.0-impl \
|
|
|
|
android.hardware.thermal@1.0-service \
|
2018-07-12 22:11:03 -04:00
|
|
|
thermal.sdm660
|
2017-07-27 06:28:13 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# Thermal Controller
|
2019-03-06 05:28:11 -05:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
ThermalController
|
|
|
|
|
2018-07-12 22:11:03 -04:00
|
|
|
# USB
|
|
|
|
PRODUCT_PACKAGES += \
|
2017-09-17 01:14:00 -04:00
|
|
|
android.hardware.usb@1.0-service.xiaomi_sdm660
|
2017-10-10 04:42:48 -04:00
|
|
|
|
2018-09-10 19:57:14 -04:00
|
|
|
# VNDK
|
2019-06-29 07:39:35 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
2019-05-12 11:45:30 -04:00
|
|
|
libdng_sdk.vendor_32 \
|
2019-12-01 08:32:53 -05:00
|
|
|
libstdc++.vendor_32 \
|
2019-05-12 11:42:58 -04:00
|
|
|
vndk-ext \
|
2018-09-10 19:57:14 -04:00
|
|
|
vndk_package
|
2019-06-29 07:39:35 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# WiFi
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
android.hardware.wifi@1.0-service \
|
|
|
|
hostapd \
|
|
|
|
libqsap_sdk \
|
|
|
|
libwifi-hal-qcom \
|
|
|
|
wpa_supplicant \
|
2019-03-12 14:20:57 -04:00
|
|
|
wpa_supplicant.conf \
|
|
|
|
wpa_cli
|
2018-07-12 22:11:03 -04:00
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# WiFi Configs
|
2018-07-12 22:11:03 -04:00
|
|
|
PRODUCT_COPY_FILES += \
|
2020-05-05 13:56:33 -04:00
|
|
|
$(COMMON_PATH)/configs/wifi/hostapd.accept:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.accept \
|
|
|
|
$(COMMON_PATH)/configs/wifi/hostapd.conf:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd_default.conf \
|
|
|
|
$(COMMON_PATH)/configs/wifi/hostapd.deny:$(TARGET_COPY_OUT_VENDOR)/etc/hostapd/hostapd.deny \
|
2019-12-20 12:17:54 -05:00
|
|
|
$(COMMON_PATH)/configs/wifi/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf \
|
2020-05-05 13:56:33 -04:00
|
|
|
$(COMMON_PATH)/configs/wifi/WCNSS_qcom_cfg.ini:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/WCNSS_qcom_cfg.ini \
|
|
|
|
$(COMMON_PATH)/configs/wifi/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf
|
2018-12-24 06:25:51 -05:00
|
|
|
|
|
|
|
# WiFi Display
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
libaacwrapper \
|
|
|
|
libnl
|
|
|
|
|
2019-12-20 12:17:54 -05:00
|
|
|
# WiFi Display JAR
|
2018-12-24 06:25:51 -05:00
|
|
|
PRODUCT_BOOT_JARS += \
|
|
|
|
WfdCommon
|
2019-08-16 02:35:51 -04:00
|
|
|
|
|
|
|
# XiaomiParts
|
2019-09-16 11:25:48 -04:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
XiaomiParts
|