Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 1 | # |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 2 | # Copyright (C) 2021 SHIFT GmbH |
| 3 | # Copyright (C) 2021 The LineageOS Project |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 4 | # |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: Apache-2.0 |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 6 | # |
| 7 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 8 | # Inherit from those products. Most specific first. |
Alexander Martinz | daffc62 | 2023-01-17 14:07:00 +0100 | [diff] [blame] | 9 | ifeq ($(WITH_64_BIT_ONLY),false) |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 10 | $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) |
Alexander Martinz | daffc62 | 2023-01-17 14:07:00 +0100 | [diff] [blame] | 11 | else |
| 12 | $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit_only.mk) |
| 13 | endif |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 14 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 15 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 16 | # Inherit vendor blobs |
Kevin F. Haggerty | dc80eaa | 2021-04-09 08:18:37 -0600 | [diff] [blame] | 17 | $(call inherit-product, vendor/shift/axolotl/axolotl-vendor.mk) |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 18 | |
Bruno Martins | 352afff | 2024-06-23 12:29:15 +0100 | [diff] [blame] | 19 | # Add common definitions for Qualcomm |
| 20 | $(call inherit-product, hardware/qcom-caf/common/common.mk) |
| 21 | |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 22 | # AAPT |
| 23 | PRODUCT_AAPT_CONFIG := normal |
| 24 | PRODUCT_AAPT_PREF_CONFIG := 420dpi |
| 25 | PRODUCT_AAPT_PREBUILT_DPI := xxhdpi xhdpi hdpi |
| 26 | |
| 27 | # Boot animation |
| 28 | TARGET_SCREEN_HEIGHT := 2160 |
| 29 | TARGET_SCREEN_WIDTH := 1080 |
| 30 | |
| 31 | # Display |
| 32 | PRODUCT_PROPERTY_OVERRIDES += \ |
| 33 | ro.sf.lcd_density=420 \ |
| 34 | vendor.display.lcd_density=420 \ |
| 35 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 36 | # Dynamic Partitions |
| 37 | PRODUCT_USE_DYNAMIC_PARTITIONS := true |
| 38 | PRODUCT_USE_DYNAMIC_PARTITION_SIZE := true |
| 39 | |
| 40 | ##### |
| 41 | |
| 42 | # A/B - post |
| 43 | PRODUCT_PACKAGES += \ |
| 44 | checkpoint_gc \ |
| 45 | otapreopt_script \ |
| 46 | |
| 47 | # A/B - post - system |
| 48 | AB_OTA_POSTINSTALL_CONFIG += \ |
| 49 | RUN_POSTINSTALL_system=true \ |
| 50 | POSTINSTALL_PATH_system=system/bin/otapreopt_script \ |
| 51 | FILESYSTEM_TYPE_system=ext4 \ |
| 52 | |
| 53 | # A/B - post - vendor |
| 54 | AB_OTA_POSTINSTALL_CONFIG += \ |
| 55 | RUN_POSTINSTALL_vendor=true \ |
| 56 | POSTINSTALL_PATH_vendor=bin/checkpoint_gc \ |
| 57 | FILESYSTEM_TYPE_vendor=ext4 \ |
| 58 | POSTINSTALL_OPTIONAL_vendor=true \ |
| 59 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 60 | # ANT+ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 61 | PRODUCT_PACKAGES += \ |
| 62 | AntHalService \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 63 | |
| 64 | # Audio |
| 65 | PRODUCT_PACKAGES += \ |
Mikhail Naganov | bd9cd57 | 2019-11-22 10:56:29 -0800 | [diff] [blame] | 66 | android.hardware.audio@6.0-impl \ |
| 67 | android.hardware.audio.effect@6.0-impl \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 68 | android.hardware.audio.service \ |
Michael Bestas | 4378244 | 2022-10-24 02:17:20 +0300 | [diff] [blame] | 69 | audio.primary.sdm845 \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 70 | audio.r_submix.default \ |
| 71 | audio.usb.default \ |
Michael Bestas | 4378244 | 2022-10-24 02:17:20 +0300 | [diff] [blame] | 72 | liba2dpoffload \ |
| 73 | libbatterylistener \ |
| 74 | libcomprcapture \ |
| 75 | libexthwplugin \ |
| 76 | libhdmiedid \ |
| 77 | libhfp \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 78 | libqcompostprocbundle \ |
| 79 | libqcomvisualizer \ |
| 80 | libqcomvoiceprocessing \ |
Michael Bestas | 4378244 | 2022-10-24 02:17:20 +0300 | [diff] [blame] | 81 | libsndmonitor \ |
| 82 | libspkrprot \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 83 | libtinycompress \ |
| 84 | libvolumelistener \ |
| 85 | tinymix \ |
| 86 | |
Alexander Martinz | 3f93efe | 2022-11-11 16:06:29 +0100 | [diff] [blame] | 87 | PRODUCT_PACKAGES += \ |
| 88 | android.hardware.soundtrigger@2.2-impl \ |
| 89 | sound_trigger.primary.sdm845 \ |
| 90 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 91 | PRODUCT_COPY_FILES += \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 92 | frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml \ |
| 93 | frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \ |
| 94 | frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \ |
| 95 | frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \ |
| 96 | frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \ |
| 97 | |
| 98 | PRODUCT_COPY_FILES += \ |
Alexander Martinz | 4caa10e | 2022-01-19 08:56:50 +0100 | [diff] [blame] | 99 | $(LOCAL_PATH)/audio/audio_configs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_configs.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 100 | $(LOCAL_PATH)/audio/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \ |
| 101 | $(LOCAL_PATH)/audio/audio_output_policy.conf:$(TARGET_COPY_OUT_VENDOR)/etc/audio_output_policy.conf \ |
| 102 | $(LOCAL_PATH)/audio/audio_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_platform_info.xml \ |
Alexander Martinz | 2029b11 | 2022-01-13 16:20:51 +0100 | [diff] [blame] | 103 | $(LOCAL_PATH)/audio/audio_policy_configuration_vendor.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/audio_policy_configuration.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 104 | $(LOCAL_PATH)/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \ |
| 105 | $(LOCAL_PATH)/audio/audio_policy_configuration_a2dp_offload_disabled.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration_a2dp_offload_disabled.xml \ |
| 106 | $(LOCAL_PATH)/audio/audio_tuning_mixer_tavil.txt:$(TARGET_COPY_OUT_VENDOR)/etc/audio_tuning_mixer_tavil.txt \ |
| 107 | $(LOCAL_PATH)/audio/bluetooth_hearing_aid_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_hearing_aid_audio_policy_configuration.xml \ |
| 108 | $(LOCAL_PATH)/audio/graphite_ipc_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/graphite_ipc_platform_info.xml \ |
| 109 | $(LOCAL_PATH)/audio/listen_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/listen_platform_info.xml \ |
| 110 | $(LOCAL_PATH)/audio/mixer_paths_tavil.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths_tavil.xml \ |
| 111 | $(LOCAL_PATH)/audio/sound_trigger_mixer_paths_wcd9340.xml:$(TARGET_COPY_OUT_VENDOR)/etc/sound_trigger_mixer_paths_wcd9340.xml \ |
| 112 | $(LOCAL_PATH)/audio/sound_trigger_platform_info.xml:$(TARGET_COPY_OUT_VENDOR)/etc/sound_trigger_platform_info.xml \ |
| 113 | |
Alexander Martinz | 1c40220 | 2022-12-19 20:42:25 +0100 | [diff] [blame] | 114 | # Audio - ACDB |
| 115 | PRODUCT_COPY_FILES += \ |
| 116 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Bluetooth_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Bluetooth_cal.acdb \ |
| 117 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Codec_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Codec_cal.acdb \ |
| 118 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_General_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_General_cal.acdb \ |
| 119 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Global_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Global_cal.acdb \ |
| 120 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Handset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Handset_cal.acdb \ |
| 121 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Hdmi_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Hdmi_cal.acdb \ |
| 122 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Headset_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Headset_cal.acdb \ |
| 123 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_Speaker_cal.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_Speaker_cal.acdb \ |
| 124 | $(LOCAL_PATH)/audio/acdbdata/QRD/QRD_workspaceFile.qwsp:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/QRD/QRD_workspaceFile.qwsp \ |
| 125 | $(LOCAL_PATH)/audio/acdbdata/adsp_avs_config.acdb:$(TARGET_COPY_OUT_VENDOR)/etc/acdbdata/adsp_avs_config.acdb \ |
| 126 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 127 | # Bluetooth |
| 128 | PRODUCT_PACKAGES += \ |
LuK1337 | 06a84c9 | 2023-10-21 15:44:06 +0200 | [diff] [blame] | 129 | android.hardware.bluetooth@1.0 \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 130 | android.hardware.bluetooth@1.0.vendor \ |
| 131 | android.hardware.bluetooth.a2dp@1.0.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 132 | android.hardware.bluetooth.audio@2.0-impl \ |
| 133 | audio.bluetooth.default \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 134 | vendor.qti.hardware.bluetooth_audio@2.0.vendor \ |
| 135 | vendor.qti.hardware.btconfigstore@1.0.vendor \ |
| 136 | |
| 137 | # Boot control |
| 138 | PRODUCT_PACKAGES += \ |
Alexander Martinz | c15b888 | 2022-01-07 11:36:10 +0100 | [diff] [blame] | 139 | android.hardware.boot@1.1-impl-qti \ |
| 140 | android.hardware.boot@1.1-impl-qti.recovery \ |
| 141 | android.hardware.boot@1.1-service \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 142 | bootctrl.sdm845 \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 143 | bootctrl.sdm845.recovery \ |
| 144 | |
| 145 | PRODUCT_PACKAGES_DEBUG += \ |
| 146 | bootctl \ |
| 147 | |
| 148 | # Camera |
| 149 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 150 | android.frameworks.cameraservice.common@2.0.vendor \ |
| 151 | android.frameworks.cameraservice.device@2.0.vendor \ |
| 152 | android.frameworks.cameraservice.service@2.1.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 153 | android.hardware.camera.provider@2.4-impl \ |
| 154 | android.hardware.camera.provider@2.4-service_64 \ |
| 155 | vendor.qti.hardware.camera.device@1.0.vendor \ |
| 156 | |
Alexander Martinz | f151030 | 2021-09-09 09:04:33 +0200 | [diff] [blame] | 157 | PRODUCT_COPY_FILES += \ |
| 158 | $(LOCAL_PATH)/configs/camera/camxoverridesettings.txt:$(TARGET_COPY_OUT_VENDOR)/etc/camera/camxoverridesettings.txt \ |
| 159 | |
Alexander Koskovich | 5c33652 | 2020-12-03 10:26:15 +0000 | [diff] [blame] | 160 | # Configstore |
| 161 | PRODUCT_PACKAGES += \ |
| 162 | disable_configstore |
| 163 | |
Hridya Valsaraju | c573f37 | 2021-04-02 11:33:45 -0700 | [diff] [blame] | 164 | # DebugFS |
| 165 | PRODUCT_SET_DEBUGFS_RESTRICTIONS := true |
| 166 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 167 | # Device-specific settings |
| 168 | PRODUCT_PACKAGES += \ |
| 169 | AxolotlParts \ |
| 170 | |
| 171 | # Display |
| 172 | PRODUCT_PACKAGES += \ |
| 173 | android.hardware.graphics.composer@2.3-service \ |
| 174 | android.hardware.graphics.mapper@2.0-impl-qti-display \ |
| 175 | android.hardware.memtrack@1.0-impl \ |
| 176 | android.hardware.memtrack@1.0-service \ |
| 177 | gralloc.sdm845 \ |
| 178 | hwcomposer.sdm845 \ |
| 179 | libdisplayconfig.qti \ |
| 180 | libqdMetaData \ |
| 181 | libtinyxml \ |
| 182 | memtrack.sdm845 \ |
| 183 | vendor.display.config@1.0.vendor \ |
| 184 | vendor.display.config@2.0 \ |
| 185 | vendor.qti.hardware.display.allocator@1.0-service \ |
| 186 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 187 | # DRM |
| 188 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 947edf9 | 2023-01-18 15:11:57 +0100 | [diff] [blame] | 189 | android.hardware.drm@1.3.vendor \ |
Michael Bestas | ee2d0de | 2023-11-22 16:32:23 +0200 | [diff] [blame] | 190 | android.hardware.drm-service.clearkey \ |
basamaryan | c016790 | 2023-10-07 15:17:04 -0400 | [diff] [blame] | 191 | libprotobuf-cpp-full-3.9.1-vendorcompat \ |
LuK1337 | e361ee2 | 2023-10-20 00:53:15 +0200 | [diff] [blame] | 192 | libprotobuf-cpp-lite-3.9.1-vendorcompat \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 193 | |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 194 | # Fastbootd |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 195 | PRODUCT_PACKAGES += \ |
| 196 | android.hardware.fastboot@1.0-impl-mock \ |
| 197 | fastbootd \ |
| 198 | |
| 199 | # Filesystem |
| 200 | PRODUCT_PACKAGES += \ |
| 201 | check_f2fs \ |
| 202 | f2fs_io \ |
| 203 | sg_write_buffer \ |
| 204 | |
Jaegeuk Kim | ae0ef8b | 2020-03-10 11:08:34 -0700 | [diff] [blame] | 205 | PRODUCT_PACKAGES += \ |
| 206 | e2fsck_ramdisk \ |
| 207 | tune2fs_ramdisk \ |
| 208 | resize2fs_ramdisk \ |
| 209 | |
Paul Crowley | abf7710 | 2019-04-01 13:44:46 -0700 | [diff] [blame] | 210 | PRODUCT_PROPERTY_OVERRIDES += \ |
| 211 | ro.crypto.volume.filenames_mode=aes-256-cts \ |
| 212 | |
Michael Bestas | d91e1ee | 2022-10-24 18:03:33 +0300 | [diff] [blame] | 213 | # Fingerprint |
| 214 | PRODUCT_PACKAGES += \ |
| 215 | android.hardware.biometrics.fingerprint@2.1-service \ |
| 216 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 217 | # FM packages |
| 218 | PRODUCT_PACKAGES += \ |
| 219 | FM2 \ |
| 220 | libqcomfm_jni \ |
| 221 | qcom.fmradio \ |
| 222 | |
| 223 | # Framework permissions |
| 224 | PRODUCT_COPY_FILES += \ |
| 225 | frameworks/native/data/etc/android.hardware.audio.low_latency.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.low_latency.xml \ |
| 226 | frameworks/native/data/etc/android.hardware.audio.pro.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.pro.xml \ |
| 227 | frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \ |
| 228 | frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \ |
| 229 | frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.flash-autofocus.xml \ |
| 230 | frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \ |
| 231 | frameworks/native/data/etc/android.hardware.camera.full.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.full.xml \ |
| 232 | frameworks/native/data/etc/android.hardware.camera.raw.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.raw.xml \ |
Dominik Baronelli | 2410607 | 2023-09-23 12:48:17 +0200 | [diff] [blame] | 233 | frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 234 | frameworks/native/data/etc/android.hardware.location.gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.location.gps.xml \ |
| 235 | frameworks/native/data/etc/android.hardware.nfc.hce.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hce.xml \ |
| 236 | frameworks/native/data/etc/android.hardware.nfc.hcef.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hcef.xml \ |
| 237 | frameworks/native/data/etc/android.hardware.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.xml \ |
| 238 | frameworks/native/data/etc/android.hardware.opengles.aep.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.opengles.aep.xml \ |
Jack Yu | 396d883 | 2019-12-04 17:59:29 +0800 | [diff] [blame] | 239 | frameworks/native/data/etc/android.hardware.se.omapi.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.uicc.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 240 | frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \ |
| 241 | frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \ |
| 242 | frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \ |
| 243 | frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \ |
| 244 | frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \ |
| 245 | frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml \ |
| 246 | frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \ |
| 247 | frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml \ |
| 248 | frameworks/native/data/etc/android.hardware.telephony.cdma.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.cdma.xml \ |
| 249 | frameworks/native/data/etc/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.gsm.xml \ |
| 250 | frameworks/native/data/etc/android.hardware.telephony.ims.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.ims.xml \ |
| 251 | frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \ |
| 252 | frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ |
| 253 | frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ |
| 254 | frameworks/native/data/etc/android.hardware.vulkan.compute-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.compute-0.xml \ |
| 255 | frameworks/native/data/etc/android.hardware.vulkan.level-1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level-1.xml \ |
| 256 | frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_1.xml \ |
| 257 | frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \ |
| 258 | frameworks/native/data/etc/android.hardware.wifi.passpoint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.passpoint.xml \ |
| 259 | frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \ |
| 260 | |
| 261 | PRODUCT_COPY_FILES += \ |
| 262 | frameworks/native/data/etc/android.software.device_id_attestation.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_id_attestation.xml \ |
| 263 | frameworks/native/data/etc/android.software.ipsec_tunnels.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.ipsec_tunnels.xml \ |
| 264 | frameworks/native/data/etc/android.software.midi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.midi.xml \ |
| 265 | frameworks/native/data/etc/android.software.sip.voip.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.sip.voip.xml \ |
Dominik Baronelli | c501719 | 2022-12-06 15:25:16 +0100 | [diff] [blame] | 266 | frameworks/native/data/etc/android.software.verified_boot.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.verified_boot.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 267 | frameworks/native/data/etc/com.android.nfc_extras.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.android.nfc_extras.xml \ |
| 268 | frameworks/native/data/etc/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml \ |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 269 | |
Alastair Donaldson | b0bd9b8 | 2020-12-18 13:53:59 +0000 | [diff] [blame] | 270 | PRODUCT_COPY_FILES += \ |
linjoey | ad79b75 | 2021-06-16 21:29:00 +0800 | [diff] [blame] | 271 | frameworks/native/data/etc/android.software.opengles.deqp.level-2020-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.opengles.deqp.level.xml \ |
| 272 | frameworks/native/data/etc/android.software.vulkan.deqp.level-2020-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.vulkan.deqp.level.xml \ |
Alastair Donaldson | b0bd9b8 | 2020-12-18 13:53:59 +0000 | [diff] [blame] | 273 | |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 274 | # Fstab |
| 275 | PRODUCT_PACKAGES += \ |
| 276 | fstab.persist \ |
| 277 | fstab.qcom \ |
| 278 | |
| 279 | PRODUCT_COPY_FILES += \ |
| 280 | $(LOCAL_PATH)/rootdir/etc/fstab.axolotl:$(TARGET_COPY_OUT_RAMDISK)/fstab.qcom \ |
| 281 | $(LOCAL_PATH)/rootdir/etc/fstab.persist:$(TARGET_COPY_OUT_RAMDISK)/fstab.persist \ |
| 282 | |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 283 | # Gatekeeper |
| 284 | PRODUCT_PACKAGES += \ |
| 285 | android.hardware.gatekeeper@1.0.vendor \ |
Michael Bestas | 9aef177 | 2024-06-14 00:26:49 +0300 | [diff] [blame] | 286 | libion.vendor \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 287 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 288 | # GPS |
| 289 | PRODUCT_PACKAGES += \ |
Michael Bestas | 39f97cd | 2023-05-12 04:18:32 +0300 | [diff] [blame] | 290 | android.hardware.gnss@2.0-impl-qti \ |
Michael Bestas | c7693c1 | 2023-05-12 03:22:06 +0300 | [diff] [blame] | 291 | android.hardware.gnss@2.0-service-qti \ |
Michael Bestas | 39f97cd | 2023-05-12 04:18:32 +0300 | [diff] [blame] | 292 | libbatching \ |
| 293 | libgeofencing \ |
| 294 | libgnss \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 295 | |
| 296 | PRODUCT_COPY_FILES += \ |
| 297 | $(LOCAL_PATH)/configs/gps/flp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/flp.conf \ |
| 298 | $(LOCAL_PATH)/configs/gps/gps.conf:$(TARGET_COPY_OUT_VENDOR)/etc/gps.conf \ |
| 299 | $(LOCAL_PATH)/configs/gps/izat.conf:$(TARGET_COPY_OUT_VENDOR)/etc/izat.conf \ |
| 300 | $(LOCAL_PATH)/configs/gps/lowi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/lowi.conf \ |
| 301 | $(LOCAL_PATH)/configs/gps/sap.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sap.conf \ |
| 302 | $(LOCAL_PATH)/configs/gps/xtwifi.conf:$(TARGET_COPY_OUT_VENDOR)/etc/xtwifi.conf \ |
| 303 | |
Alexander Martinz | 2e91e19 | 2023-04-17 12:58:25 +0200 | [diff] [blame] | 304 | # Graphics |
| 305 | |
| 306 | ## Enable blur |
| 307 | PRODUCT_PRODUCT_PROPERTIES += \ |
| 308 | ro.sf.blurs_are_expensive=1 \ |
| 309 | ro.surface_flinger.supports_background_blur=1 \ |
| 310 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 311 | # Health |
| 312 | PRODUCT_PACKAGES += \ |
Bruno Martins | 4bd77fc | 2023-11-13 13:48:00 +0000 | [diff] [blame] | 313 | android.hardware.health-service.qti \ |
| 314 | android.hardware.health-service.qti_recovery \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 315 | |
| 316 | # HIDL |
| 317 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 318 | android.hidl.allocator@1.0.vendor \ |
Michael Bestas | 2adf437 | 2022-10-24 01:45:54 +0300 | [diff] [blame] | 319 | android.hidl.base@1.0.vendor \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 320 | android.hidl.memory@1.0.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 321 | libhidltransport \ |
| 322 | libhidltransport.vendor \ |
| 323 | libhwbinder \ |
| 324 | libhwbinder.vendor \ |
| 325 | |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 326 | # Init |
| 327 | PRODUCT_PACKAGES += \ |
Alexander Martinz | f71a131 | 2021-08-05 13:16:42 +0200 | [diff] [blame] | 328 | init.qcom.rc \ |
Alexander Martinz | 6cb4c87 | 2021-09-21 18:59:46 +0200 | [diff] [blame] | 329 | init.qcom.early_boot.sh \ |
Michael Bestas | 9a37ba1 | 2023-05-29 21:32:43 +0300 | [diff] [blame] | 330 | init.qcom.post_boot.sh \ |
| 331 | init.qcom.sh \ |
Michael Bestas | 46c6d77 | 2023-05-11 18:43:53 +0300 | [diff] [blame] | 332 | init.qcom.usb.sh \ |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 333 | init.recovery.qcom.rc \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 334 | init.target.performance.rc \ |
| 335 | init.target.rc \ |
Alexander Martinz | 54fdc2d | 2021-04-22 14:19:05 +0200 | [diff] [blame] | 336 | ueventd.qcom.rc \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 337 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 338 | # IPA |
| 339 | PRODUCT_PACKAGES += \ |
| 340 | ipacm \ |
| 341 | IPACM_cfg.xml \ |
| 342 | |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 343 | # Keymaster |
| 344 | PRODUCT_PACKAGES += \ |
| 345 | android.hardware.keymaster@4.0.vendor \ |
| 346 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 347 | # Light HAL |
| 348 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 61a60f9 | 2023-06-02 13:49:25 +0200 | [diff] [blame] | 349 | hardware.shift.light-service.default \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 350 | |
Michael Bestas | be807ff | 2023-03-03 23:43:42 +0200 | [diff] [blame] | 351 | # Lineage Health |
| 352 | PRODUCT_PACKAGES += \ |
| 353 | vendor.lineage.health-service.default |
| 354 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 355 | # LiveDisplay |
| 356 | #PRODUCT_PACKAGES += \ |
| 357 | # vendor.lineage.livedisplay@2.0-service-sdm \ |
| 358 | |
| 359 | # Media |
| 360 | PRODUCT_PACKAGES += \ |
Michael Bestas | b16c822 | 2023-11-07 01:33:12 +0200 | [diff] [blame] | 361 | android.hardware.media.omx@1.0-service \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 362 | libavservices_minijail \ |
| 363 | libavservices_minijail.vendor \ |
| 364 | libc2dcolorconvert \ |
| 365 | libOmxAacEnc \ |
| 366 | libOmxAmrEnc \ |
| 367 | libOmxCore \ |
| 368 | libOmxEvrcEnc \ |
| 369 | libOmxG711Enc \ |
| 370 | libOmxQcelp13Enc \ |
| 371 | libOmxVdec \ |
| 372 | libOmxVenc \ |
| 373 | libstagefrighthw \ |
| 374 | |
| 375 | PRODUCT_COPY_FILES += \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 376 | $(LOCAL_PATH)/configs/media/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 377 | $(LOCAL_PATH)/configs/media/media_codecs_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_performance.xml \ |
| 378 | $(LOCAL_PATH)/configs/media/media_profiles_V1_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml \ |
| 379 | $(LOCAL_PATH)/configs/media/system_properties.xml:$(TARGET_COPY_OUT_VENDOR)/etc/system_properties.xml \ |
| 380 | |
Bharath | eb9bbfa | 2022-10-10 20:15:30 +0530 | [diff] [blame] | 381 | # Media - Transcoding |
| 382 | PRODUCT_VENDOR_PROPERTIES += \ |
| 383 | persist.sys.fuse.transcode_user_control=true \ |
| 384 | persist.sys.fuse.transcode_enabled=false \ |
| 385 | |
Alexander Martinz | 2a1f1a8 | 2023-03-23 10:43:30 +0100 | [diff] [blame] | 386 | # Namespaces - Native Libraries |
| 387 | PRODUCT_COPY_FILES += \ |
| 388 | $(LOCAL_PATH)/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \ |
| 389 | |
| 390 | # Namespaces - Soong |
| 391 | PRODUCT_SOONG_NAMESPACES += \ |
| 392 | $(LOCAL_PATH) \ |
| 393 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 394 | # Net |
| 395 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 396 | android.system.net.netd@1.1.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 397 | |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 398 | # Neural Network |
| 399 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 3fa63ba | 2023-03-21 14:52:01 +0100 | [diff] [blame] | 400 | android.hardware.neuralnetworks@1.3.vendor \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 401 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 402 | # NFC |
| 403 | PRODUCT_PACKAGES += \ |
| 404 | android.hardware.nfc@1.2-service \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 405 | com.android.nfc_extras \ |
| 406 | NfcNci \ |
| 407 | Tag \ |
| 408 | |
| 409 | PRODUCT_COPY_FILES += \ |
| 410 | $(LOCAL_PATH)/configs/nfc/libnfc-nci.conf:$(TARGET_COPY_OUT_PRODUCT)/etc/libnfc-nci.conf \ |
| 411 | $(LOCAL_PATH)/configs/nfc/libnfc-nxp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp.conf \ |
| 412 | |
| 413 | # Overlays |
| 414 | DEVICE_PACKAGE_OVERLAYS += \ |
| 415 | $(LOCAL_PATH)/overlay \ |
| 416 | $(LOCAL_PATH)/overlay-lineage \ |
| 417 | |
Anton Hansson | 1bae2ff | 2018-11-07 16:10:05 +0000 | [diff] [blame] | 418 | PRODUCT_ENFORCE_RRO_TARGETS := * |
| 419 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 420 | # Power |
| 421 | PRODUCT_PACKAGES += \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 422 | android.hardware.power@1.2.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 423 | android.hardware.power-service-qti \ |
Alexander Martinz | 3fd2fd0 | 2023-11-27 17:38:58 +0100 | [diff] [blame] | 424 | vendor.qti.hardware.perf@2.0.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 425 | vendor.qti.hardware.perf@2.1.vendor \ |
| 426 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 427 | # Protobuf |
| 428 | PRODUCT_PACKAGES += \ |
| 429 | libprotobuf-cpp-full-vendorcompat \ |
| 430 | libprotobuf-cpp-lite-vendorcompat \ |
| 431 | |
| 432 | # QTI |
| 433 | PRODUCT_PACKAGES += \ |
| 434 | libqti_vndfwk_detect.vendor \ |
| 435 | |
| 436 | PRODUCT_COPY_FILES += \ |
Michael Bestas | fe3cbb3 | 2022-10-30 19:01:36 +0200 | [diff] [blame] | 437 | $(LOCAL_PATH)/configs/permissions/qti_whitelist.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/sysconfig/qti_whitelist.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 438 | $(LOCAL_PATH)/configs/permissions/system_ext-privapp-permissions-qti.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/privapp-permissions-qti.xml \ |
| 439 | |
| 440 | # Radio |
| 441 | PRODUCT_PACKAGES += \ |
Michael Bestas | 1f812ec | 2023-05-29 19:31:45 +0300 | [diff] [blame] | 442 | android.hardware.secure_element@1.0 \ |
| 443 | android.hardware.secure_element@1.0.vendor \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 444 | android.hardware.radio@1.5.vendor \ |
| 445 | android.hardware.radio.config@1.2.vendor \ |
| 446 | android.hardware.radio.deprecated@1.0.vendor \ |
Michael Bestas | d66d5e8 | 2023-05-13 18:52:40 +0300 | [diff] [blame] | 447 | CarrierConfigOverlay \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 448 | libjson \ |
| 449 | librmnetctl \ |
Michael Bestas | 9aef177 | 2024-06-14 00:26:49 +0300 | [diff] [blame] | 450 | libsqlite.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 451 | |
| 452 | # RenderScript |
| 453 | PRODUCT_PACKAGES += \ |
| 454 | android.hardware.renderscript@1.0-impl \ |
| 455 | |
| 456 | # Seccomp policy |
| 457 | PRODUCT_COPY_FILES += \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 458 | $(LOCAL_PATH)/seccomp/mediacodec.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediacodec.policy \ |
| 459 | |
| 460 | # Secure element |
| 461 | PRODUCT_PACKAGES += \ |
| 462 | SecureElement \ |
| 463 | |
| 464 | # Sensors |
| 465 | PRODUCT_PACKAGES += \ |
LuK1337 | 0062447 | 2023-10-21 16:34:40 +0200 | [diff] [blame] | 466 | android.frameworks.sensorservice@1.0.vendor \ |
Alexander Martinz | 11cb84a | 2022-01-10 13:16:37 +0100 | [diff] [blame] | 467 | android.hardware.sensors@2.0.vendor \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 468 | libsensorndkbridge \ |
| 469 | |
Michael Bestas | 506d334 | 2023-10-29 22:25:26 +0200 | [diff] [blame] | 470 | # Shipping API |
| 471 | PRODUCT_SHIPPING_API_LEVEL := 29 |
| 472 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 473 | # Telephony |
| 474 | PRODUCT_PACKAGES += \ |
| 475 | ims-ext-common \ |
| 476 | ims_ext_common.xml \ |
Alexander Martinz | 6cf7e9e | 2023-01-18 12:09:37 +0100 | [diff] [blame] | 477 | libgui_shim \ |
| 478 | libui_shim \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 479 | qti-telephony-hidl-wrapper \ |
| 480 | qti_telephony_hidl_wrapper.xml \ |
| 481 | qti-telephony-utils \ |
| 482 | qti_telephony_utils.xml \ |
| 483 | telephony-ext \ |
| 484 | |
| 485 | PRODUCT_BOOT_JARS += \ |
| 486 | telephony-ext \ |
| 487 | |
| 488 | # Thermal |
| 489 | PRODUCT_PACKAGES += \ |
Alexander Martinz | d397dff | 2022-04-26 18:18:58 +0200 | [diff] [blame] | 490 | android.hardware.thermal@2.0-service.qti \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 491 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 492 | # Update engine |
| 493 | PRODUCT_PACKAGES += \ |
| 494 | update_engine \ |
| 495 | update_engine_sideload \ |
| 496 | update_verifier \ |
| 497 | |
| 498 | PRODUCT_PACKAGES_DEBUG += \ |
| 499 | update_engine_client \ |
| 500 | |
| 501 | # USB |
| 502 | PRODUCT_PACKAGES += \ |
Michael Bestas | 0573bba | 2024-03-21 13:38:44 +0200 | [diff] [blame] | 503 | android.hardware.usb@1.3-service.dual_role_usb \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 504 | |
| 505 | # Vibrator |
| 506 | PRODUCT_PACKAGES += \ |
Michael Bestas | 3735983 | 2024-06-15 00:56:09 +0300 | [diff] [blame] | 507 | vendor.qti.hardware.vibrator.service \ |
| 508 | |
| 509 | PRODUCT_COPY_FILES += \ |
| 510 | vendor/qcom/opensource/vibrator/excluded-input-devices.xml:$(TARGET_COPY_OUT_VENDOR)/etc/excluded-input-devices.xml \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 511 | |
| 512 | # VNDK |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 513 | PRODUCT_PACKAGES += \ |
Alexander Martinz | a159f24 | 2023-09-27 14:40:09 +0200 | [diff] [blame] | 514 | libcomparetf2_shim \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 515 | libgui_vendor \ |
| 516 | |
Alexander Martinz | 1787af9 | 2023-09-27 17:13:12 +0200 | [diff] [blame] | 517 | PRODUCT_COPY_FILES += \ |
Alexander Martinz | df76a41 | 2023-12-01 18:15:29 +0100 | [diff] [blame] | 518 | prebuilts/vndk/v32/arm64/arch-arm64-armv8-a/shared/vndk-sp/libhidlbase.so:$(TARGET_COPY_OUT_ODM)/lib64/libhidlbase-v32.so \ |
Alexander Martinz | 1787af9 | 2023-09-27 17:13:12 +0200 | [diff] [blame] | 519 | |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 520 | # WiFi |
| 521 | PRODUCT_PACKAGES += \ |
Gabriel Biren | 838c0a9 | 2023-03-27 22:33:41 +0000 | [diff] [blame] | 522 | android.hardware.wifi-service \ |
Alexander Martinz | 87f2d95 | 2021-08-26 17:27:03 +0200 | [diff] [blame] | 523 | hostapd \ |
| 524 | libcld80211 \ |
| 525 | libwifi-hal-qcom \ |
| 526 | libwpa_client \ |
| 527 | WifiOverlay \ |
| 528 | wpa_supplicant \ |
| 529 | wpa_supplicant.conf \ |
Bruno Martins | c821d10 | 2024-06-23 21:58:49 +0100 | [diff] [blame^] | 530 | |
| 531 | # WiFi firmware symlinks |
| 532 | PRODUCT_PACKAGES += \ |
| 533 | firmware_wlan_mac.bin_symlink \ |
| 534 | firmware_WCNSS_qcom_cfg.ini_symlink \ |