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 17# Enable updating of APEXes 18$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) 19 20 21ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) 22# Setup TV Build 23USE_OEM_TV_APP := true 24$(call inherit-product, device/google/atv/products/atv_base.mk) 25PRODUCT_CHARACTERISTICS := tv 26PRODUCT_AAPT_PREF_CONFIG := tvdpi 27PRODUCT_IS_ATV := true 28else 29# Adjust the dalvik heap to be appropriate for a tablet. 30$(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk) 31$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk) 32endif 33 34# Set vendor kernel path 35PRODUCT_VENDOR_KERNEL_HEADERS := device/linaro/hikey/kernel-headers 36 37PRODUCT_SHIPPING_API_LEVEL := 29 38PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := false 39 40 41# Enable Scoped Storage related 42$(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk) 43 44# Set custom settings 45DEVICE_PACKAGE_OVERLAYS := device/linaro/hikey/overlay 46ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) 47# Set TV Custom Settings 48DEVICE_PACKAGE_OVERLAYS += device/google/atv/overlay 49endif 50 51#avoid usb crash 52PRODUCT_PRODUCT_PROPERTIES += \ 53 persist.adb.nonblocking_ffs=0 \ 54 ro.adb.nonblocking_ffs=0 \ 55 56 57#Force navkeys on 58PRODUCT_PROPERTY_OVERRIDES += qemu.hw.mainkeys=0 59 60# Add openssh support for remote debugging and job submission 61PRODUCT_PACKAGES += ssh sftp scp sshd ssh-keygen sshd_config start-ssh 62 63# Add wifi-related packages 64PRODUCT_PACKAGES += libwpa_client wpa_supplicant hostapd wificond 65PRODUCT_PROPERTY_OVERRIDES += wifi.interface=wlan0 \ 66 wifi.supplicant_scan_interval=15 67 68# Build and run only ART 69PRODUCT_RUNTIMES := runtime_libart_default 70 71# Build default bluetooth a2dp and usb audio HALs 72PRODUCT_PACKAGES += audio.a2dp.default \ 73 audio.bluetooth.default \ 74 audio.usb.default \ 75 audio.r_submix.default \ 76 tinyplay 77 78PRODUCT_PACKAGES += \ 79 android.hardware.audio@4.0-impl:32 \ 80 android.hardware.audio.effect@4.0-impl:32 \ 81 android.hardware.audio@2.0-service \ 82 android.hardware.soundtrigger@2.0-impl \ 83 android.hardware.bluetooth.audio@2.0-impl 84 85PRODUCT_PACKAGES += vndk_package 86 87PRODUCT_PACKAGES += \ 88 android.hardware.drm@1.0-impl \ 89 android.hardware.drm@1.0-service 90 91# Graphics HAL 92PRODUCT_PACKAGES += \ 93 android.hardware.graphics.allocator@2.0-impl \ 94 android.hardware.graphics.allocator@2.0-service \ 95 android.hardware.graphics.composer@2.1-impl \ 96 android.hardware.graphics.composer@2.1-service \ 97 android.hardware.graphics.mapper@2.0-impl 98 99# Memtrack 100PRODUCT_PACKAGES += memtrack.default \ 101 android.hardware.memtrack@1.0-service \ 102 android.hardware.memtrack@1.0-impl 103 104ifeq ($(HIKEY_USE_LEGACY_TI_BLUETOOTH), true) 105PRODUCT_PACKAGES += android.hardware.bluetooth@1.0-service.hikey uim 106else 107PRODUCT_PACKAGES += android.hardware.bluetooth@1.1-service.btlinux 108endif 109 110# PowerHAL 111PRODUCT_PACKAGES += \ 112 android.hardware.power@1.1-impl \ 113 android.hardware.power@1.1-service.hikey-common 114 115#GNSS HAL 116PRODUCT_PACKAGES += \ 117 android.hardware.gnss@1.0-impl 118 119# Software Gatekeeper HAL 120PRODUCT_PACKAGES += \ 121 android.hardware.gatekeeper@1.0-service.software 122 123# Keymaster HAL 124PRODUCT_PACKAGES += \ 125 android.hardware.keymaster@3.0-impl \ 126 android.hardware.keymaster@3.0-service 127 128 129# Sensor HAL 130ifneq ($(TARGET_SENSOR_MEZZANINE),) 131TARGET_USES_NANOHUB_SENSORHAL := true 132NANOHUB_SENSORHAL_LID_STATE_ENABLED := true 133NANOHUB_SENSORHAL_SENSORLIST := $(LOCAL_PATH)/sensorhal/sensorlist_$(TARGET_SENSOR_MEZZANINE).cpp 134NANOHUB_SENSORHAL_DIRECT_REPORT_ENABLED := true 135NANOHUB_SENSORHAL_DYNAMIC_SENSOR_EXT_ENABLED := true 136 137PRODUCT_PACKAGES += \ 138 context_hub.default \ 139 android.hardware.sensors@1.0-service \ 140 android.hardware.sensors@1.0-impl \ 141 android.hardware.contexthub@1.0-service \ 142 android.hardware.contexthub@1.0-impl 143 144# Nanohub tools 145PRODUCT_PACKAGES += stm32_flash nanoapp_cmd nanotool 146 147PRODUCT_COPY_FILES += \ 148 device/linaro/hikey/init.common.nanohub.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.nanohub.rc 149 150# Copy sensors config file(s) 151PRODUCT_COPY_FILES += \ 152 frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \ 153 frameworks/native/data/etc/android.hardware.sensor.ambient_temperature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.ambient_temperature.xml \ 154 frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \ 155 frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \ 156 frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \ 157 frameworks/native/data/etc/android.hardware.sensor.hifi_sensors.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.hifi_sensors.xml \ 158 frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \ 159 frameworks/native/data/etc/android.hardware.sensor.relative_humidity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.relative_humidity.xml \ 160 frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \ 161 frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml 162 163# Argonkey VL53L0X proximity driver is not available yet. So we are going to copy conf file for neonkey only 164ifeq ($(TARGET_SENSOR_MEZZANINE),neonkey) 165PRODUCT_COPY_FILES += \ 166 frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml 167endif 168 169# VR HAL 170PRODUCT_COPY_FILES += \ 171 frameworks/native/services/vr/virtual_touchpad/idc/vr-virtual-touchpad-1.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/vr-virtual-touchpad-1.idc \ 172 frameworks/native/data/etc/android.hardware.vr.high_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.high_performance.xml \ 173 frameworks/native/data/etc/android.hardware.vr.headtracking-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.headtracking.xml 174 175PRODUCT_PACKAGES += \ 176 vr.default \ 177 android.hardware.vr@1.0-service \ 178 android.hardware.vr@1.0-impl 179 180endif 181 182 183ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) 184# TV Specific Packages 185PRODUCT_PACKAGES += \ 186 TvSettings \ 187 LiveTv \ 188 google-tv-pairing-protocol \ 189 TvProvision \ 190 LeanbackSampleApp \ 191 TvSampleLeanbackLauncher \ 192 TvProvider \ 193 SettingsIntelligence \ 194 tv_input.default \ 195 com.android.media.tv.remoteprovider \ 196 InputDevices 197PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=260 198else 199 200# Use Launcher3QuickStep 201PRODUCT_PACKAGES += Launcher3QuickStep 202PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=160 203endif 204 205# Copy hardware config file(s) 206PRODUCT_COPY_FILES += \ 207 device/linaro/hikey/etc/permissions/android.hardware.screen.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.screen.xml \ 208 device/linaro/hikey/etc/permissions/android.software.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.xml \ 209 frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \ 210 frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \ 211 frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \ 212 frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \ 213 frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \ 214 frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ 215 frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ 216 frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml 217 218# Include BT modules 219$(call inherit-product, device/linaro/hikey/wpan/ti-wpan-products.mk) 220 221PRODUCT_COPY_FILES += \ 222 frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \ 223 frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \ 224 frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \ 225 frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \ 226 device/linaro/hikey/wpa_supplicant.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant.conf \ 227 $(LOCAL_PATH)/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \ 228 $(LOCAL_PATH)/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf 229 230# audio policy configuration 231USE_XML_AUDIO_POLICY_CONF := 1 232PRODUCT_COPY_FILES += \ 233 device/linaro/hikey/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \ 234 device/linaro/hikey/audio/audio_policy_configuration_bluetooth_legacy_hal.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml \ 235 frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \ 236 frameworks/av/services/audiopolicy/config/a2dp_in_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_in_audio_policy_configuration.xml \ 237 frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \ 238 frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \ 239 frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \ 240 frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \ 241 frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml 242 243# Copy media codecs config file 244PRODUCT_COPY_FILES += \ 245 device/linaro/hikey/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \ 246 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml 247 248PRODUCT_COPY_FILES += \ 249 device/linaro/hikey/init.common.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.common.rc \ 250 251# Health 252PRODUCT_PACKAGES += \ 253 android.hardware.health@2.0-service \ 254 android.hardware.health@2.0-impl 255