blob: 05d82deaa8efc3466d4e207a20f8724820e6f084 [file] [log] [blame]
Vishal Bhoje72c9202015-10-23 18:10:21 +01001#
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
Sahaj Sarup93980e02018-09-11 13:24:20 +000017ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv))
18# Setup TV Build
19USE_OEM_TV_APP := true
20$(call inherit-product, device/google/atv/products/atv_base.mk)
21PRODUCT_CHARACTERISTICS := tv
22PRODUCT_AAPT_PREF_CONFIG := tvdpi
23PRODUCT_IS_ATV := true
24else
Vishal Bhoje72c9202015-10-23 18:10:21 +010025# Adjust the dalvik heap to be appropriate for a tablet.
John Stultz58bae752018-10-18 13:13:24 -070026$(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk)
Sahaj Sarup93980e02018-09-11 13:24:20 +000027endif
Vishal Bhoje72c9202015-10-23 18:10:21 +010028
Niranjan Yadla88a93e42017-08-29 15:22:40 -070029# Set vendor kernel path
30PRODUCT_VENDOR_KERNEL_HEADERS := device/linaro/hikey/kernel-headers
31
Vishal Bhoje72c9202015-10-23 18:10:21 +010032# Set custom settings
33DEVICE_PACKAGE_OVERLAYS := device/linaro/hikey/overlay
Sahaj Sarup93980e02018-09-11 13:24:20 +000034ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv))
35# Set TV Custom Settings
36DEVICE_PACKAGE_OVERLAYS += device/google/atv/overlay
37endif
Vishal Bhoje72c9202015-10-23 18:10:21 +010038
John Stultze113ecc2018-09-11 11:53:35 -070039#Force navkeys on
40PRODUCT_PROPERTY_OVERRIDES += qemu.hw.mainkeys=0
41
Vishal Bhoje72c9202015-10-23 18:10:21 +010042# Add openssh support for remote debugging and job submission
John Stultzd497f632017-05-30 23:51:33 -070043PRODUCT_PACKAGES += ssh sftp scp sshd ssh-keygen sshd_config start-ssh
Dmitry Shmidta95006a2016-03-16 13:23:30 -070044
45# Add wifi-related packages
mukesh agrawal2b2f7d32016-10-05 15:15:15 -070046PRODUCT_PACKAGES += libwpa_client wpa_supplicant hostapd wificond wifilogd
Dmitry Shmidta95006a2016-03-16 13:23:30 -070047PRODUCT_PROPERTY_OVERRIDES += wifi.interface=wlan0 \
48 wifi.supplicant_scan_interval=15
Vishal Bhoje72c9202015-10-23 18:10:21 +010049
50# Build and run only ART
51PRODUCT_RUNTIMES := runtime_libart_default
52
Amit Pundiraf628c22016-11-02 16:37:00 +080053# Build default bluetooth a2dp and usb audio HALs
54PRODUCT_PACKAGES += audio.a2dp.default \
John Stultz52ebc462016-06-03 11:37:21 -070055 audio.usb.default \
56 audio.r_submix.default \
57 tinyplay
Vishal Bhoje72c9202015-10-23 18:10:21 +010058
Mikhail Naganov692a6d72016-11-11 16:36:02 -080059PRODUCT_PACKAGES += \
John Stultzd013ca82018-04-11 12:17:34 -070060 android.hardware.audio@2.0-service \
Mikhail Naganovcff48dd2016-11-21 15:22:21 -080061 android.hardware.audio@2.0-impl \
62 android.hardware.audio.effect@2.0-impl \
63 android.hardware.broadcastradio@1.0-impl \
64 android.hardware.soundtrigger@2.0-impl
Mikhail Naganov692a6d72016-11-11 16:36:02 -080065
John Stultz3424dc32018-04-11 15:37:34 -070066PRODUCT_PACKAGES += vndk_package
67
Jeff Tinkerbc86f722017-01-01 11:02:12 -080068PRODUCT_PACKAGES += \
69 android.hardware.drm@1.0-impl \
70
Vishal Bhoje72c9202015-10-23 18:10:21 +010071PRODUCT_PACKAGES += libGLES_android
72
Chia-I Wu075e7772017-04-24 13:49:38 -070073# Graphics HAL
74PRODUCT_PACKAGES += \
75 android.hardware.graphics.allocator@2.0-impl \
John Stultzd013ca82018-04-11 12:17:34 -070076 android.hardware.graphics.allocator@2.0-service \
Chia-I Wu2b614442017-10-19 15:07:35 -070077 android.hardware.graphics.composer@2.1-impl \
John Stultzd013ca82018-04-11 12:17:34 -070078 android.hardware.graphics.composer@2.1-service \
Chia-I Wu075e7772017-04-24 13:49:38 -070079 android.hardware.graphics.mapper@2.0-impl
80
John Stultz6dc5ce52017-11-01 18:58:15 -070081ifeq ($(HIKEY_USE_DRM_HWCOMPOSER), true)
82 BOARD_USES_DRM_HWCOMPOSER := true
83 PRODUCT_PACKAGES += hwcomposer.drm
84endif
85
Dmitry Shmidt4cb6c2b2017-08-29 15:05:18 -070086# Memtrack
87PRODUCT_PACKAGES += memtrack.default \
88 android.hardware.memtrack@1.0-service \
89 android.hardware.memtrack@1.0-impl
90
John Stultzd497f632017-05-30 23:51:33 -070091ifeq ($(HIKEY_USE_LEGACY_TI_BLUETOOTH), true)
92PRODUCT_PACKAGES += android.hardware.bluetooth@1.0-service.hikey uim
93else
94PRODUCT_PACKAGES += android.hardware.bluetooth@1.0-service.btlinux
95endif
96
John Stultz7266c5f2016-06-09 14:18:57 -070097# PowerHAL
Ruchi Kandoibb36ee22016-11-03 12:46:10 -070098PRODUCT_PACKAGES += android.hardware.power@1.0-impl
John Stultz7266c5f2016-06-09 14:18:57 -070099
Hridya Valsarajua4fe7ca2016-12-02 16:02:28 -0800100#GNSS HAL
101PRODUCT_PACKAGES += \
102 android.hardware.gnss@1.0-impl
103
Janis Danisevskisfa3896c2016-11-22 10:45:49 +0000104# Keymaster HAL
105PRODUCT_PACKAGES += \
John Stultzd013ca82018-04-11 12:17:34 -0700106 android.hardware.keymaster@3.0-impl \
107 android.hardware.keymaster@3.0-service
108
Janis Danisevskisfa3896c2016-11-22 10:45:49 +0000109
Ben Fennema52301e42017-10-17 12:24:04 -0700110# Sensor HAL
111ifneq ($(TARGET_SENSOR_MEZZANINE),)
112TARGET_USES_NANOHUB_SENSORHAL := true
113NANOHUB_SENSORHAL_LID_STATE_ENABLED := true
114NANOHUB_SENSORHAL_SENSORLIST := $(LOCAL_PATH)/sensorhal/sensorlist_$(TARGET_SENSOR_MEZZANINE).cpp
115NANOHUB_SENSORHAL_DIRECT_REPORT_ENABLED := true
116NANOHUB_SENSORHAL_DYNAMIC_SENSOR_EXT_ENABLED := true
117
118PRODUCT_PACKAGES += \
119 context_hub.default \
120 android.hardware.sensors@1.0-service \
121 android.hardware.sensors@1.0-impl \
122 android.hardware.contexthub@1.0-service \
Dmitry Shmidtee5f1b52018-01-19 09:28:08 -0800123 android.hardware.contexthub@1.0-impl
Ben Fennema52301e42017-10-17 12:24:04 -0700124
125# Nanohub tools
126PRODUCT_PACKAGES += stm32_flash nanoapp_cmd nanotool
127
128PRODUCT_COPY_FILES += \
129 device/linaro/hikey/init.common.nanohub.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.nanohub.rc
Denis Cioccab92f2ef2017-10-31 17:18:50 +0800130
131# Copy sensors config file(s)
132PRODUCT_COPY_FILES += \
John Stultz11ddf0b2018-04-11 12:25:32 -0700133 frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \
134 frameworks/native/data/etc/android.hardware.sensor.ambient_temperature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.ambient_temperature.xml \
135 frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \
136 frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \
137 frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \
138 frameworks/native/data/etc/android.hardware.sensor.hifi_sensors.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.hifi_sensors.xml \
139 frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \
140 frameworks/native/data/etc/android.hardware.sensor.relative_humidity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.relative_humidity.xml \
141 frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \
142 frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml
Denis Cioccab92f2ef2017-10-31 17:18:50 +0800143
144# Argonkey VL53L0X proximity driver is not available yet. So we are going to copy conf file for neonkey only
145ifeq ($(TARGET_SENSOR_MEZZANINE),neonkey)
146PRODUCT_COPY_FILES += \
John Stultz11ddf0b2018-04-11 12:25:32 -0700147 frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml
Denis Cioccab92f2ef2017-10-31 17:18:50 +0800148endif
Sahaj Sarup9a61afa2017-11-07 20:58:21 +0000149
150# VR HAL
151PRODUCT_COPY_FILES += \
152 frameworks/native/services/vr/virtual_touchpad/idc/vr-virtual-touchpad-1.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/vr-virtual-touchpad-1.idc \
153 frameworks/native/data/etc/android.hardware.vr.high_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.high_performance.xml \
154 frameworks/native/data/etc/android.hardware.vr.headtracking-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.headtracking.xml
155
156PRODUCT_PACKAGES += \
157 vr.default \
158 android.hardware.vr@1.0-service \
159 android.hardware.vr@1.0-impl
160
Ben Fennema52301e42017-10-17 12:24:04 -0700161endif
162
Sahaj Sarup93980e02018-09-11 13:24:20 +0000163
164ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv))
165# TV Specific Packages
166PRODUCT_PACKAGES += \
167 TvSettings \
168 LiveTv \
169 google-tv-pairing-protocol \
170 TvProvision \
171 LeanbackSampleApp \
172 TvSampleLeanbackLauncher \
173 TvProvider \
174 SettingsIntelligence \
175 tv_input.default \
176 com.android.media.tv.remoteprovider \
177 InputDevices
178PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=260
179else
180
Sunny Goyald8abea82018-05-29 16:18:14 -0700181# Use Launcher3QuickStep
182PRODUCT_PACKAGES += Launcher3QuickStep
Sahaj Sarup93980e02018-09-11 13:24:20 +0000183PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=160
184endif
Sahaj Sarupaef8e3f2017-08-22 14:02:42 +0530185
Vishal Bhoje72c9202015-10-23 18:10:21 +0100186# Copy hardware config file(s)
187PRODUCT_COPY_FILES += \
John Stultz11ddf0b2018-04-11 12:25:32 -0700188 device/linaro/hikey/etc/permissions/android.hardware.screen.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.screen.xml \
189 frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \
190 frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \
191 frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \
192 frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \
193 frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \
194 frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
195 frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \
196 frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml
Vishal Bhoje72c9202015-10-23 18:10:21 +0100197
Vishal Bhoje72c9202015-10-23 18:10:21 +0100198# Include BT modules
John Stultz58bae752018-10-18 13:13:24 -0700199$(call inherit-product, device/linaro/hikey/wpan/ti-wpan-products.mk)
Vishal Bhoje72c9202015-10-23 18:10:21 +0100200
Vishal Bhoje72c9202015-10-23 18:10:21 +0100201PRODUCT_COPY_FILES += \
John Stultz11ddf0b2018-04-11 12:25:32 -0700202 frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
203 frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
204 frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \
205 frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \
206 device/linaro/hikey/wpa_supplicant.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant.conf \
Dmitry Shmidt9dd7b9c2018-02-01 10:09:39 -0800207 $(LOCAL_PATH)/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \
208 $(LOCAL_PATH)/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf
Eric Laurentc313d912017-04-20 11:45:21 -0700209
210# audio policy configuration
211USE_XML_AUDIO_POLICY_CONF := 1
212PRODUCT_COPY_FILES += \
213 device/linaro/hikey/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
214 frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \
215 frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
216 frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \
217 frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
218 frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml
Vishal Bhoje72c9202015-10-23 18:10:21 +0100219
220# Copy media codecs config file
Eric Laurent3051d9e2016-06-10 14:37:37 -0700221PRODUCT_COPY_FILES += \
John Stultz11ddf0b2018-04-11 12:25:32 -0700222 device/linaro/hikey/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
223 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml
John Stultz98e17f62018-04-11 15:33:22 -0700224
225PRODUCT_PACKAGES += \
226 android.hardware.renderscript@1.0.vndk-sp\
227 android.hardware.graphics.composer@2.1.vndk-sp\
228 android.hardware.graphics.allocator@2.0.vndk-sp\
229 android.hardware.graphics.mapper@2.0.vndk-sp\
230 android.hardware.graphics.common@1.0.vndk-sp\
231 libvndksupport.vndk-sp\
232 libbinder.vndk-sp\
233 libhwbinder.vndk-sp\
234 libbase.vndk-sp\
235 libfmq.vndk-sp\
236 libcutils.vndk-sp\
237 libhardware.vndk-sp\
238 libhidlbase.vndk-sp\
239 libhidltransport.vndk-sp\
240 libui.vndk-sp\
241 libutils.vndk-sp\
242 libc++.vndk-sp\
243 libRS_internal.vndk-sp\
244 libRSDriver.vndk-sp\
245 libRSCpuRef.vndk-sp\
246 libbcinfo.vndk-sp\
247 libblas.vndk-sp\
248 libft2.vndk-sp\
249 libpng.vndk-sp\
250 libcompiler_rt.vndk-sp\
251 libbacktrace.vndk-sp\
252 libunwind.vndk-sp\
253 libunwindstack.vndk-sp\
254 liblzma.vndk-sp\
255 libion.vndk-sp\