Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 The Android Open-Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
John Stultz | ead7eed | 2019-06-19 23:02:25 +0000 | [diff] [blame] | 17 | # Enable updating of APEXes |
| 18 | $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) |
| 19 | |
John Stultz | ec36f2d | 2022-02-02 04:37:53 +0000 | [diff] [blame] | 20 | # Check vendor package version |
| 21 | # If you need to make changes to the vendor partition, |
| 22 | # please modify the source git project here: |
| 23 | # https://staging-git.codelinaro.org/linaro/linaro-aosp/aosp-linaro-vendor-package |
| 24 | include $(LOCAL_PATH)/vendor-package-ver.mk |
| 25 | ifneq (,$(wildcard $(LINARO_VENDOR_PATH)/hikey960/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk)) |
| 26 | # Unfortunately inherit-product doesn't export build variables from the |
| 27 | # called make file to the caller, so we have to include it directly here. |
| 28 | include $(LINARO_VENDOR_PATH)/hikey960/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk |
| 29 | ifneq ($(TARGET_LINARO_VENDOR_VERSION), $(EXPECTED_LINARO_VENDOR_VERSION)) |
| 30 | $(warning TARGET_LINARO_VENDOR_VERSION ($(TARGET_LINARO_VENDOR_VERSION)) does not match exiting the build ($(EXPECTED_LINARO_VENDOR_VERSION)).) |
| 31 | $(warning Please download new binaries here:) |
| 32 | $(warning $(VND_PKG_URL) ) |
| 33 | $(warning And extract in the ANDROID_TOP_DIR) |
| 34 | endif |
| 35 | else |
| 36 | $(warning Missing Linaro Vendor Package!) |
| 37 | $(warning Please download new binaries here:) |
| 38 | $(warning $(VND_PKG_URL) ) |
| 39 | $(warning And extract in the ANDROID_TOP_DIR) |
| 40 | endif |
Cole Faust | 4bfb1c9 | 2022-03-07 11:43:55 -0800 | [diff] [blame] | 41 | $(warning EXPECTED_LINARO_VENDOR_VERSION=$(EXPECTED_LINARO_VENDOR_VERSION)) |
John Stultz | ead7eed | 2019-06-19 23:02:25 +0000 | [diff] [blame] | 42 | |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 43 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 44 | # Setup TV Build |
| 45 | USE_OEM_TV_APP := true |
| 46 | $(call inherit-product, device/google/atv/products/atv_base.mk) |
| 47 | PRODUCT_CHARACTERISTICS := tv |
| 48 | PRODUCT_AAPT_PREF_CONFIG := tvdpi |
| 49 | PRODUCT_IS_ATV := true |
| 50 | else |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 51 | # Adjust the dalvik heap to be appropriate for a tablet. |
John Stultz | 58bae75 | 2018-10-18 13:13:24 -0700 | [diff] [blame] | 52 | $(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk) |
Robin Lee | 81bde6d | 2020-08-15 22:17:32 +0200 | [diff] [blame] | 53 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk) |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 54 | endif |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 55 | |
Niranjan Yadla | 88a93e4 | 2017-08-29 15:22:40 -0700 | [diff] [blame] | 56 | # Set vendor kernel path |
| 57 | PRODUCT_VENDOR_KERNEL_HEADERS := device/linaro/hikey/kernel-headers |
| 58 | |
John Stultz | aa4874d | 2021-07-08 02:00:45 +0000 | [diff] [blame] | 59 | PRODUCT_SHIPPING_API_LEVEL := 31 |
John Stultz | 5725174 | 2019-05-15 19:16:24 +0000 | [diff] [blame] | 60 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := false |
| 61 | |
Yongqin Liu | 7271d39 | 2018-11-21 15:27:41 +0800 | [diff] [blame] | 62 | |
John Stultz | e9bbc98 | 2020-10-08 07:03:39 +0000 | [diff] [blame] | 63 | # Enable Scoped Storage related |
| 64 | $(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk) |
| 65 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 66 | # Set custom settings |
| 67 | DEVICE_PACKAGE_OVERLAYS := device/linaro/hikey/overlay |
Robin Lee | 22180b9 | 2021-01-25 19:23:54 +0000 | [diff] [blame] | 68 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 69 | # Set TV Custom Settings |
| 70 | DEVICE_PACKAGE_OVERLAYS += device/google/atv/overlay |
| 71 | endif |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 72 | |
John Stultz | 2f5ac94 | 2019-05-16 00:28:46 +0000 | [diff] [blame] | 73 | #avoid usb crash |
| 74 | PRODUCT_PRODUCT_PROPERTIES += \ |
| 75 | persist.adb.nonblocking_ffs=0 \ |
| 76 | ro.adb.nonblocking_ffs=0 \ |
| 77 | |
| 78 | |
John Stultz | e113ecc | 2018-09-11 11:53:35 -0700 | [diff] [blame] | 79 | #Force navkeys on |
| 80 | PRODUCT_PROPERTY_OVERRIDES += qemu.hw.mainkeys=0 |
| 81 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 82 | # Add openssh support for remote debugging and job submission |
John Stultz | d497f63 | 2017-05-30 23:51:33 -0700 | [diff] [blame] | 83 | PRODUCT_PACKAGES += ssh sftp scp sshd ssh-keygen sshd_config start-ssh |
Dmitry Shmidt | a95006a | 2016-03-16 13:23:30 -0700 | [diff] [blame] | 84 | |
| 85 | # Add wifi-related packages |
David Su | 2682228 | 2019-01-16 16:41:30 -0800 | [diff] [blame] | 86 | PRODUCT_PACKAGES += libwpa_client wpa_supplicant hostapd wificond |
Dmitry Shmidt | a95006a | 2016-03-16 13:23:30 -0700 | [diff] [blame] | 87 | PRODUCT_PROPERTY_OVERRIDES += wifi.interface=wlan0 \ |
| 88 | wifi.supplicant_scan_interval=15 |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 89 | |
| 90 | # Build and run only ART |
| 91 | PRODUCT_RUNTIMES := runtime_libart_default |
| 92 | |
Amit Pundir | af628c2 | 2016-11-02 16:37:00 +0800 | [diff] [blame] | 93 | # Build default bluetooth a2dp and usb audio HALs |
| 94 | PRODUCT_PACKAGES += audio.a2dp.default \ |
Cheney Ni | 8b8c39c | 2019-03-18 14:11:30 +0800 | [diff] [blame] | 95 | audio.bluetooth.default \ |
John Stultz | 52ebc46 | 2016-06-03 11:37:21 -0700 | [diff] [blame] | 96 | audio.usb.default \ |
| 97 | audio.r_submix.default \ |
| 98 | tinyplay |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 99 | |
Mikhail Naganov | 692a6d7 | 2016-11-11 16:36:02 -0800 | [diff] [blame] | 100 | PRODUCT_PACKAGES += \ |
John Stultz | 84b31d1 | 2021-07-07 23:40:21 +0000 | [diff] [blame] | 101 | android.hardware.audio.service \ |
| 102 | android.hardware.audio@7.0-impl \ |
| 103 | android.hardware.audio.effect@7.0-impl \ |
Yifan Hong | a4524e6 | 2021-10-08 15:21:04 -0700 | [diff] [blame] | 104 | android.hardware.soundtrigger@2.3-impl \ |
Cheney Ni | 8b8c39c | 2019-03-18 14:11:30 +0800 | [diff] [blame] | 105 | android.hardware.bluetooth.audio@2.0-impl |
Mikhail Naganov | 692a6d7 | 2016-11-11 16:36:02 -0800 | [diff] [blame] | 106 | |
John Stultz | 84b31d1 | 2021-07-07 23:40:21 +0000 | [diff] [blame] | 107 | |
John Stultz | 3424dc3 | 2018-04-11 15:37:34 -0700 | [diff] [blame] | 108 | PRODUCT_PACKAGES += vndk_package |
| 109 | |
Jeff Tinker | bc86f72 | 2017-01-01 11:02:12 -0800 | [diff] [blame] | 110 | PRODUCT_PACKAGES += \ |
John Stultz | f811988 | 2021-07-08 01:44:13 +0000 | [diff] [blame] | 111 | android.hardware.drm@1.3-service.clearkey \ |
| 112 | android.hardware.drm@1.3-service.widevine \ |
Jeff Tinker | bc86f72 | 2017-01-01 11:02:12 -0800 | [diff] [blame] | 113 | |
Chia-I Wu | 075e777 | 2017-04-24 13:49:38 -0700 | [diff] [blame] | 114 | # Graphics HAL |
| 115 | PRODUCT_PACKAGES += \ |
| 116 | android.hardware.graphics.allocator@2.0-impl \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 117 | android.hardware.graphics.allocator@2.0-service \ |
Chia-I Wu | 2b61444 | 2017-10-19 15:07:35 -0700 | [diff] [blame] | 118 | android.hardware.graphics.composer@2.1-impl \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 119 | android.hardware.graphics.composer@2.1-service \ |
John Stultz | 84b31d1 | 2021-07-07 23:40:21 +0000 | [diff] [blame] | 120 | android.hardware.graphics.mapper@2.0-impl-2.1 \ |
Chia-I Wu | 075e777 | 2017-04-24 13:49:38 -0700 | [diff] [blame] | 121 | |
Harpreet \"Eli\" Sangha | 8744be7 | 2019-11-26 15:54:27 +0900 | [diff] [blame] | 122 | PRODUCT_PACKAGES += android.hardware.bluetooth@1.1-service.btlinux |
John Stultz | d497f63 | 2017-05-30 23:51:33 -0700 | [diff] [blame] | 123 | |
John Stultz | f811988 | 2021-07-08 01:44:13 +0000 | [diff] [blame] | 124 | # |
| 125 | # Power HAL |
| 126 | # |
John Stultz | c1875b5 | 2018-11-20 16:15:20 -0800 | [diff] [blame] | 127 | PRODUCT_PACKAGES += \ |
John Stultz | f811988 | 2021-07-08 01:44:13 +0000 | [diff] [blame] | 128 | android.hardware.power-service.example |
| 129 | |
| 130 | # |
| 131 | # PowerStats HAL |
| 132 | # |
| 133 | PRODUCT_PACKAGES += \ |
| 134 | android.hardware.power.stats-service.example |
John Stultz | 7266c5f | 2016-06-09 14:18:57 -0700 | [diff] [blame] | 135 | |
Hridya Valsaraju | a4fe7ca | 2016-12-02 16:02:28 -0800 | [diff] [blame] | 136 | |
Janis Danisevskis | e46fc83 | 2019-06-27 10:14:32 -0700 | [diff] [blame] | 137 | # Software Gatekeeper HAL |
| 138 | PRODUCT_PACKAGES += \ |
| 139 | android.hardware.gatekeeper@1.0-service.software |
| 140 | |
Janis Danisevskis | fa3896c | 2016-11-22 10:45:49 +0000 | [diff] [blame] | 141 | # Keymaster HAL |
| 142 | PRODUCT_PACKAGES += \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 143 | android.hardware.keymaster@3.0-impl \ |
| 144 | android.hardware.keymaster@3.0-service |
| 145 | |
Janis Danisevskis | fa3896c | 2016-11-22 10:45:49 +0000 | [diff] [blame] | 146 | |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 147 | # Sensor HAL |
| 148 | ifneq ($(TARGET_SENSOR_MEZZANINE),) |
| 149 | TARGET_USES_NANOHUB_SENSORHAL := true |
| 150 | NANOHUB_SENSORHAL_LID_STATE_ENABLED := true |
| 151 | NANOHUB_SENSORHAL_SENSORLIST := $(LOCAL_PATH)/sensorhal/sensorlist_$(TARGET_SENSOR_MEZZANINE).cpp |
| 152 | NANOHUB_SENSORHAL_DIRECT_REPORT_ENABLED := true |
| 153 | NANOHUB_SENSORHAL_DYNAMIC_SENSOR_EXT_ENABLED := true |
| 154 | |
| 155 | PRODUCT_PACKAGES += \ |
| 156 | context_hub.default \ |
| 157 | android.hardware.sensors@1.0-service \ |
| 158 | android.hardware.sensors@1.0-impl \ |
| 159 | android.hardware.contexthub@1.0-service \ |
Dmitry Shmidt | ee5f1b5 | 2018-01-19 09:28:08 -0800 | [diff] [blame] | 160 | android.hardware.contexthub@1.0-impl |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 161 | |
| 162 | # Nanohub tools |
| 163 | PRODUCT_PACKAGES += stm32_flash nanoapp_cmd nanotool |
| 164 | |
| 165 | PRODUCT_COPY_FILES += \ |
| 166 | device/linaro/hikey/init.common.nanohub.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.nanohub.rc |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 167 | |
| 168 | # Copy sensors config file(s) |
| 169 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 170 | frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \ |
| 171 | frameworks/native/data/etc/android.hardware.sensor.ambient_temperature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.ambient_temperature.xml \ |
| 172 | frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \ |
| 173 | frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \ |
| 174 | frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \ |
| 175 | frameworks/native/data/etc/android.hardware.sensor.hifi_sensors.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.hifi_sensors.xml \ |
| 176 | frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \ |
| 177 | frameworks/native/data/etc/android.hardware.sensor.relative_humidity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.relative_humidity.xml \ |
| 178 | frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \ |
| 179 | frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 180 | |
| 181 | # Argonkey VL53L0X proximity driver is not available yet. So we are going to copy conf file for neonkey only |
| 182 | ifeq ($(TARGET_SENSOR_MEZZANINE),neonkey) |
| 183 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 184 | frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 185 | endif |
Sahaj Sarup | 9a61afa | 2017-11-07 20:58:21 +0000 | [diff] [blame] | 186 | |
| 187 | # VR HAL |
| 188 | PRODUCT_COPY_FILES += \ |
| 189 | frameworks/native/services/vr/virtual_touchpad/idc/vr-virtual-touchpad-1.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/vr-virtual-touchpad-1.idc \ |
| 190 | frameworks/native/data/etc/android.hardware.vr.high_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.high_performance.xml \ |
| 191 | frameworks/native/data/etc/android.hardware.vr.headtracking-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.headtracking.xml |
| 192 | |
| 193 | PRODUCT_PACKAGES += \ |
| 194 | vr.default \ |
| 195 | android.hardware.vr@1.0-service \ |
| 196 | android.hardware.vr@1.0-impl |
| 197 | |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 198 | endif |
| 199 | |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 200 | |
| 201 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 202 | # TV Specific Packages |
| 203 | PRODUCT_PACKAGES += \ |
| 204 | TvSettings \ |
| 205 | LiveTv \ |
| 206 | google-tv-pairing-protocol \ |
| 207 | TvProvision \ |
| 208 | LeanbackSampleApp \ |
| 209 | TvSampleLeanbackLauncher \ |
| 210 | TvProvider \ |
| 211 | SettingsIntelligence \ |
| 212 | tv_input.default \ |
| 213 | com.android.media.tv.remoteprovider \ |
| 214 | InputDevices |
| 215 | PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=260 |
| 216 | else |
| 217 | |
Sunny Goyal | d8abea8 | 2018-05-29 16:18:14 -0700 | [diff] [blame] | 218 | # Use Launcher3QuickStep |
| 219 | PRODUCT_PACKAGES += Launcher3QuickStep |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 220 | PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=160 |
| 221 | endif |
Sahaj Sarup | aef8e3f | 2017-08-22 14:02:42 +0530 | [diff] [blame] | 222 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 223 | # Copy hardware config file(s) |
| 224 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 225 | device/linaro/hikey/etc/permissions/android.hardware.screen.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.screen.xml \ |
Yongqin Liu | 5bd58a7 | 2018-12-28 15:14:02 +0800 | [diff] [blame] | 226 | device/linaro/hikey/etc/permissions/android.software.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.xml \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 227 | frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \ |
| 228 | frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \ |
| 229 | frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \ |
| 230 | frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \ |
| 231 | frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \ |
| 232 | frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ |
| 233 | frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ |
| 234 | frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 235 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 236 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 237 | frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \ |
| 238 | frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \ |
| 239 | frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \ |
| 240 | frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \ |
| 241 | device/linaro/hikey/wpa_supplicant.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant.conf \ |
Dmitry Shmidt | 9dd7b9c | 2018-02-01 10:09:39 -0800 | [diff] [blame] | 242 | $(LOCAL_PATH)/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \ |
| 243 | $(LOCAL_PATH)/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf |
Eric Laurent | c313d91 | 2017-04-20 11:45:21 -0700 | [diff] [blame] | 244 | |
| 245 | # audio policy configuration |
Andrew Lehmer | 866339e | 2019-05-14 21:17:08 +0000 | [diff] [blame] | 246 | USE_XML_AUDIO_POLICY_CONF := 1 |
Eric Laurent | c313d91 | 2017-04-20 11:45:21 -0700 | [diff] [blame] | 247 | PRODUCT_COPY_FILES += \ |
| 248 | device/linaro/hikey/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \ |
Cheney Ni | 8b8c39c | 2019-03-18 14:11:30 +0800 | [diff] [blame] | 249 | device/linaro/hikey/audio/audio_policy_configuration_bluetooth_legacy_hal.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml \ |
Eric Laurent | c313d91 | 2017-04-20 11:45:21 -0700 | [diff] [blame] | 250 | frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \ |
Mikhail Naganov | d5148dd | 2021-10-27 22:58:38 +0000 | [diff] [blame] | 251 | frameworks/av/services/audiopolicy/config/a2dp_in_audio_policy_configuration_7_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_in_audio_policy_configuration_7_0.xml \ |
| 252 | frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration_7_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration_7_0.xml \ |
Eric Laurent | c313d91 | 2017-04-20 11:45:21 -0700 | [diff] [blame] | 253 | frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \ |
| 254 | frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \ |
| 255 | frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \ |
| 256 | frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 257 | |
| 258 | # Copy media codecs config file |
Eric Laurent | 3051d9e | 2016-06-10 14:37:37 -0700 | [diff] [blame] | 259 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 260 | device/linaro/hikey/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \ |
| 261 | frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml |
John Stultz | 98e17f6 | 2018-04-11 15:33:22 -0700 | [diff] [blame] | 262 | |
Colin Cross | d626034 | 2019-03-22 13:16:17 -0700 | [diff] [blame] | 263 | PRODUCT_COPY_FILES += \ |
| 264 | device/linaro/hikey/init.common.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.common.rc \ |
| 265 | |
John Stultz | f811988 | 2021-07-08 01:44:13 +0000 | [diff] [blame] | 266 | |
Amit Pundir | 1d09526 | 2019-10-08 17:38:17 +0530 | [diff] [blame] | 267 | # Health |
| 268 | PRODUCT_PACKAGES += \ |
John Stultz | f811988 | 2021-07-08 01:44:13 +0000 | [diff] [blame] | 269 | android.hardware.health@2.1-impl-cuttlefish \ |
| 270 | android.hardware.health@2.1-service |
Yongqin Liu | 4b5a0f8 | 2021-08-18 17:42:32 +0800 | [diff] [blame] | 271 | |
| 272 | # TODO: disable this service once we implement system suspend |
| 273 | PRODUCT_PACKAGES += \ |
| 274 | suspend_blocker |