sdm660-common: Add framework manifest

* Mentioning CodeAurora, AtFwd hal is implemented as an Android service
   and it starts from the system partition, that is, it's not a traditional
   vendor hal and hence it should be declared in the framework manifest.

Change-Id: I0aa37ae9b3baacf42dcfa54419f62fc528b00bcb
This commit is contained in:
Bruno Martins
2018-09-22 23:43:01 +01:00
committed by Nolen Johnson
parent 9aa13f588f
commit 3b169ef82f
2 changed files with 13 additions and 0 deletions

View File

@@ -70,6 +70,7 @@ NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3
# HIDL
DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := $(COMMON_PATH)/framework_compatibility_matrix.xml
DEVICE_FRAMEWORK_MANIFEST_FILE := $(COMMON_PATH)/framework_manifest.xml
# Properties
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true

12
framework_manifest.xml Normal file
View File

@@ -0,0 +1,12 @@
<manifest version="1.0" type="framework">
<hal format="hidl">
<name>vendor.qti.hardware.radio.atcmdfwd</name>
<transport>hwbinder</transport>
<version>1.0</version>
<interface>
<name>IAtCmdFwd</name>
<instance>AtCmdFwdService</instance>
</interface>
<fqname>@1.0::IAtCmdFwd/AtCmdFwdService</fqname>
</hal>
</manifest>