diff options
author | Andrew F. Davis | 2018-10-08 16:04:36 -0500 |
---|---|---|
committer | Andrew F. Davis | 2018-10-08 16:04:36 -0500 |
commit | c9bec42238bfa15023642775528062c001ca7a1c (patch) | |
tree | 966816dc179d30ed1d98ebe9c8cf8fefabe83a58 | |
parent | f1e42cf82a084d8c04a456359b4342a40e2d3a20 (diff) | |
download | device-ti-am65xevm-c9bec42238bfa15023642775528062c001ca7a1c.tar.gz device-ti-am65xevm-c9bec42238bfa15023642775528062c001ca7a1c.tar.xz device-ti-am65xevm-c9bec42238bfa15023642775528062c001ca7a1c.zip |
Add Audio and Security related packages
This also stops a boot error loop when looking for an
audio device for audioserver service.
Signed-off-by: Andrew F. Davis <afd@ti.com>
-rw-r--r-- | device-common.mk | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/device-common.mk b/device-common.mk index cb2f95a..38935c2 100644 --- a/device-common.mk +++ b/device-common.mk | |||
@@ -19,16 +19,31 @@ PRODUCT_PACKAGES += \ | |||
19 | android.hardware.graphics.allocator@2.0-impl \ | 19 | android.hardware.graphics.allocator@2.0-impl \ |
20 | android.hardware.graphics.allocator@2.0-service \ | 20 | android.hardware.graphics.allocator@2.0-service \ |
21 | android.hardware.graphics.mapper@2.0-impl \ | 21 | android.hardware.graphics.mapper@2.0-impl \ |
22 | android.hardware.drm@1.0-impl \ | ||
23 | android.hardware.drm@1.0-service \ | ||
24 | modetest \ | 22 | modetest \ |
25 | libdrm \ | 23 | libdrm \ |
26 | libgbm \ | 24 | libgbm \ |
27 | 25 | ||
26 | # Audio | ||
27 | PRODUCT_PACKAGES += \ | ||
28 | android.hardware.audio@2.0-impl \ | ||
29 | android.hardware.audio@2.0-service \ | ||
30 | android.hardware.audio.effect@2.0-impl \ | ||
31 | android.hardware.soundtrigger@2.0-impl \ | ||
32 | audio.primary.default \ | ||
33 | audio.a2dp.default \ | ||
34 | audio.r_submix.default \ | ||
35 | |||
28 | # USB | 36 | # USB |
29 | PRODUCT_PACKAGES += \ | 37 | PRODUCT_PACKAGES += \ |
30 | android.hardware.usb@1.0-service \ | 38 | android.hardware.usb@1.0-service \ |
31 | 39 | ||
40 | # Security | ||
41 | PRODUCT_PACKAGES += \ | ||
42 | android.hardware.keymaster@3.0-impl \ | ||
43 | android.hardware.keymaster@3.0-service \ | ||
44 | android.hardware.drm@1.0-impl \ | ||
45 | android.hardware.drm@1.0-service \ | ||
46 | |||
32 | PRODUCT_COPY_FILES += \ | 47 | PRODUCT_COPY_FILES += \ |
33 | frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ | 48 | frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ |
34 | frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ | 49 | frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ |