blob: 87f2bb4fcff3eb13c96637dac07c36ee0742d20d [file] [log] [blame]
Amit Pundir4e375822019-04-18 16:46:10 +05301#
2# Copyright (C) 2014 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 Stultzfa0fa162020-02-06 23:14:28 +000017# Enable updating of APEXes
18$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
19
Amit Pundir4e375822019-04-18 16:46:10 +053020# Device overlay
21DEVICE_PACKAGE_OVERLAYS := $(LOCAL_PATH)/overlay
22
23# Build and run only ART
24PRODUCT_RUNTIMES := runtime_libart_default
25
John Stultze4b2cbd2021-07-02 21:23:59 +000026PRODUCT_SHIPPING_API_LEVEL := 31
Amit Pundir4e375822019-04-18 16:46:10 +053027PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := false
28
John Stultz80e228b2020-10-06 05:03:30 +000029# Enable Scoped Storage related
30$(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
31
Amit Pundirfbd3fbb2021-11-18 14:59:17 +053032
33# Check vendor package version
34# If you need to make changes to the vendor partition,
35# please modify the source git project here:
36# https://staging-git.codelinaro.org/linaro/linaro-aosp/aosp-linaro-vendor-package
37include $(LOCAL_PATH)/vendor-package-ver.mk
38ifneq (,$(wildcard $(LINARO_VENDOR_PATH)/db845c/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk))
39 # Unfortunately inherit-product doesn't export build variables from the
40 # called make file to the caller, so we have to include it directly here.
41 include $(LINARO_VENDOR_PATH)/db845c/$(EXPECTED_LINARO_VENDOR_VERSION)/version.mk
42 ifneq ($(TARGET_LINARO_VENDOR_VERSION), $(EXPECTED_LINARO_VENDOR_VERSION))
43 $(warning TARGET_LINARO_VENDOR_VERSION ($(TARGET_LINARO_VENDOR_VERSION)) does not match exiting the build ($(EXPECTED_LINARO_VENDOR_VERSION)).)
44 $(warning Please download new binaries here:)
45 $(warning $(VND_PKG_URL) )
46 $(warning And extract in the ANDROID_TOP_DIR)
47 # Would be good to error out here, but that causes other issues
48 endif
49else
50 $(warning Missing Linaro Vendor Package!)
51 $(warning Please download new binaries here:)
52 $(warning $(VND_PKG_URL) )
53 $(warning And extract in the ANDROID_TOP_DIR)
54 # Would be good to error out here, but that causes other issues
55endif
56
57
Amit Pundir4e375822019-04-18 16:46:10 +053058# vndk
59PRODUCT_PACKAGES := vndk-sp
60
61# Dynamic partitions
62PRODUCT_BUILD_SUPER_PARTITION := true
63PRODUCT_USE_DYNAMIC_PARTITIONS := true
64PRODUCT_USE_DYNAMIC_PARTITION_SIZE := true
65
Amit Pundir4e375822019-04-18 16:46:10 +053066# HACK: Avoid usb crash
67PRODUCT_PRODUCT_PROPERTIES := \
68 persist.adb.nonblocking_ffs=0 \
69 ro.adb.nonblocking_ffs=0
70
71# Display
72PRODUCT_PACKAGES += \
John Stultzd9b540e2021-07-02 20:20:37 +000073 android.hardware.drm@1.3-service.clearkey \
74 android.hardware.drm@1.3-service.widevine \
John Stultzdd29e432021-10-06 22:32:11 +000075 libGLES_mesa \
76 libEGL_mesa \
77 libGLESv1_CM_mesa \
78 libGLESv2_mesa \
79 libgallium_dri \
80 libglapi
Amit Pundir4e375822019-04-18 16:46:10 +053081
82PRODUCT_PROPERTY_OVERRIDES += \
John Stultz26f5a0d2020-09-18 20:54:06 +000083 ro.hardware.gralloc=minigbm_msm \
Amit Pundir4e375822019-04-18 16:46:10 +053084 ro.hardware.hwcomposer=drm \
Amit Pundir4e375822019-04-18 16:46:10 +053085 ro.opengles.version=196608 \
86 persist.demo.rotationlock=1
87
John Stultz2a8c7c52021-12-04 00:45:56 +000088# Vulkan
89PRODUCT_PACKAGES += \
90 vulkan.freedreno
91
92PRODUCT_COPY_FILES += \
93 frameworks/native/data/etc/android.hardware.vulkan.level-1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level.xml \
94 frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version.xml \
95 frameworks/native/data/etc/android.software.vulkan.deqp.level-2021-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.vulkan.deqp.level.xml \
96
97PRODUCT_VENDOR_PROPERTIES += \
98 ro.hardware.vulkan=freedreno
99
100# Will need to enable this after ANDROID_external_memory_android_hardware_buffer lands in mesa
101#TARGET_USES_VULKAN = true
John Stultz26f5a0d2020-09-18 20:54:06 +0000102
103#
104# Hardware Composer HAL
105#
106PRODUCT_PACKAGES += \
107 hwcomposer.drm \
108 android.hardware.graphics.composer@2.3-impl \
109 android.hardware.graphics.composer@2.3-service
110
111#
112# Gralloc HAL
113#
114PRODUCT_PACKAGES += \
115 gralloc.minigbm_msm \
116 android.hardware.graphics.allocator@4.0-service.minigbm_msm \
117 android.hardware.graphics.mapper@4.0-impl.minigbm_msm
118
119
Amit Pundir4e375822019-04-18 16:46:10 +0530120# Use Launcher3QuickStep
121PRODUCT_PACKAGES += Launcher3QuickStep
122
123# Enable WiFi
124PRODUCT_PACKAGES += \
125 hostapd \
126 libwpa_client \
127 wpa_supplicant \
128 wpa_supplicant.conf \
Elliott Hughes6e1a73e2020-11-06 14:25:45 -0800129 wificond
Amit Pundir4e375822019-04-18 16:46:10 +0530130
131PRODUCT_PROPERTY_OVERRIDES += \
132 wifi.interface=wlan0 \
133 wifi.supplicant_scan_interval=15
134
135PRODUCT_COPY_FILES += \
136 frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
137 frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
138 $(LOCAL_PATH)/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \
139 $(LOCAL_PATH)/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf
140
141# Enable BT
142PRODUCT_PACKAGES += \
John Stultz59657d52020-01-31 23:51:58 +0000143 android.hardware.bluetooth@1.1-service.btlinux
Amit Pundir4e375822019-04-18 16:46:10 +0530144
145PRODUCT_COPY_FILES += \
146 frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \
147 frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml
148
John Stultzd9b540e2021-07-02 20:20:37 +0000149#
150# Power HAL
151#
152PRODUCT_PACKAGES += \
153 android.hardware.power-service.example
154
155#
156# PowerStats HAL
157#
158PRODUCT_PACKAGES += \
159 android.hardware.power.stats-service.example
160
161
Amit Pundir4e375822019-04-18 16:46:10 +0530162# Audio
163PRODUCT_PACKAGES += \
John Stultzfb810a92021-07-01 22:06:21 +0000164 android.hardware.audio.service \
165 android.hardware.audio@7.0-impl \
166 android.hardware.audio.effect@7.0-impl \
Xin Lia55f3262021-08-18 08:00:09 +0000167 android.hardware.soundtrigger@2.3-impl \
John Stultz59657d52020-01-31 23:51:58 +0000168 android.hardware.bluetooth.audio@2.0-impl
Amit Pundir4e375822019-04-18 16:46:10 +0530169
170# Build default bluetooth a2dp and usb audio HALs
171PRODUCT_PACKAGES += \
172 audio.a2dp.default \
John Stultz59657d52020-01-31 23:51:58 +0000173 audio.bluetooth.default \
Amit Pundir4e375822019-04-18 16:46:10 +0530174 audio.usb.default \
175 audio.r_submix.default
176
177# Build tinyalsa cli tools for debugging
178PRODUCT_PACKAGES += \
179 tinyplay \
180 tinycap \
181 tinymix \
182 tinypcminfo
183
184# audio policy configuration
185USE_XML_AUDIO_POLICY_CONF := 1
186PRODUCT_COPY_FILES += \
Amit Pundire6732bb2020-09-28 12:43:59 +0530187 $(LOCAL_PATH)/etc/mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths.xml \
Amit Pundir4e375822019-04-18 16:46:10 +0530188 $(LOCAL_PATH)/etc/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
189 $(LOCAL_PATH)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml \
190 frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \
191 frameworks/av/services/audiopolicy/config/a2dp_in_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_in_audio_policy_configuration.xml \
Amit Pundir456949d2020-02-18 22:44:16 +0530192 frameworks/av/services/audiopolicy/config/primary_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/primary_audio_policy_configuration.xml \
Amit Pundir4e375822019-04-18 16:46:10 +0530193 frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \
194 frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
195 frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \
196 frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
197 frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml
198
199# Copy media codecs config file
200PRODUCT_COPY_FILES += \
201 $(LOCAL_PATH)/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
Amit Pundir456949d2020-02-18 22:44:16 +0530202 frameworks/av/media/libeffects/data/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \
Amit Pundir4e375822019-04-18 16:46:10 +0530203 frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_video.xml \
204 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml
205
Amit Pundired6df0d2020-02-19 00:05:38 +0530206PRODUCT_COPY_FILES += \
Amit Pundir6d532ae2021-01-15 02:21:28 +0530207 $(LOCAL_PATH)/seccomp_policy/mediaswcodec.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediacodec.policy \
Amit Pundired6df0d2020-02-19 00:05:38 +0530208 $(LOCAL_PATH)/seccomp_policy/mediaswcodec.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediaswcodec.policy
209
John Stultz365efe22020-09-23 02:09:15 +0000210# Copy hardware config file(s)
211PRODUCT_COPY_FILES += \
212 device/linaro/dragonboard/etc/permissions/android.software.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.xml
213
John Stultz1b1a81a2021-07-27 05:38:32 +0000214
215# External Web Cam support
216PRODUCT_PACKAGES += \
217 android.hardware.camera.provider@2.4-impl \
218 android.hardware.camera.provider@2.4-external-service
219
220PRODUCT_COPY_FILES += \
221 frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \
222 $(LOCAL_PATH)/etc/media_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml \
223 $(LOCAL_PATH)/etc/external_camera_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/external_camera_config.xml
224
Amit Pundir4e375822019-04-18 16:46:10 +0530225# Keymaster
226PRODUCT_PACKAGES += \
227 android.hardware.keymaster@3.0-impl \
228 android.hardware.keymaster@3.0-service
229
230# Gatekeeper
231PRODUCT_PACKAGES += \
232 android.hardware.gatekeeper@1.0-service.software
233
Amit Pundir6e0d4a32019-10-08 17:38:17 +0530234# Health
235PRODUCT_PACKAGES += \
Amit Pundir4bcec512021-03-10 17:53:38 +0530236 android.hardware.health@2.1-impl-cuttlefish \
237 android.hardware.health@2.1-service
Amit Pundir6e0d4a32019-10-08 17:38:17 +0530238
Amit Pundird3525fb2021-05-31 16:16:21 +0530239# TODO: disable this service once we implement system suspend
240PRODUCT_PACKAGES += \
241 suspend_blocker
242
Amit Pundired3f8212019-07-01 18:02:54 +0000243# mkbootimg host tool to build boot.img separately
244PRODUCT_HOST_PACKAGES := \
245 mkbootimg
246
Amit Pundirb192c972021-11-18 14:22:47 +0530247# Userspace vendor services for WiFi/Audio to work
248PRODUCT_PACKAGES += \
249 pd-mapper \
250 qrtr-ns \
251 qrtr-cfg \
252 qrtr-lookup \
253 rmtfs \
254 tqftpserv
255
256PRODUCT_COPY_FILES += \
257 $(LOCAL_PATH)/qcom/init.qcom.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.qcom.rc
258
Amit Pundir4e375822019-04-18 16:46:10 +0530259# Copy standard platform config files
260PRODUCT_COPY_FILES += \
261 $(LOCAL_PATH)/ueventd.common.rc:$(TARGET_COPY_OUT_VENDOR)/ueventd.rc \
262 frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \
263 frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \
264 frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \
265 frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \
266 frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \
Amit Pundir6e3b2bb2020-04-10 22:47:13 +0530267 frameworks/native/data/etc/android.software.print.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.print.xml \
Amit Pundir4e375822019-04-18 16:46:10 +0530268 frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
269 frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \
John Stultz845c78e2021-11-30 20:54:51 +0000270 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 \
Amit Pundir4e375822019-04-18 16:46:10 +0530271 frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml
Dan Willemsen181c24c2020-01-27 18:59:03 -0800272
Amit Pundirb192c972021-11-18 14:22:47 +0530273PRODUCT_SOONG_NAMESPACES += \
274 device/linaro/dragonboard \
Amit Pundirfbd3fbb2021-11-18 14:59:17 +0530275 external/mesa3d \
276 vendor/linaro/linux-firmware/$(EXPECTED_LINARO_VENDOR_VERSION) \
277 vendor/linaro/db845c/$(EXPECTED_LINARO_VENDOR_VERSION) \
278 vendor/linaro/rb5/$(EXPECTED_LINARO_VENDOR_VERSION)
279