gts4lv: Move AtFwd hal from device to framework manifest.

AtFwd hal is implemented as an android service and
it stars from system partition, that is, it's not
a traditional vendor hal and hence it should be
declared in the framework manifest and not in the
device manifest.
This commit introduces new device specific framework
manifest (framework_manifest.xml) and moves AtFwd hal
from device to framework manifest.

Change-Id: Iacdb5604a682b8462d16297f4b543928bb100282
CRs-Fixed: 2287149
This commit is contained in:
Ruthwar Ambeer
2018-07-31 17:21:32 +05:30
committed by Bruno Martins
parent 78b2989d98
commit 85ea759504
3 changed files with 12 additions and 9 deletions

View File

@@ -25,6 +25,7 @@ TARGET_OTA_ASSERT_DEVICE := gts4lv
TARGET_BOARD_NAME := SRPRL03A001
# HIDL
DEVICE_FRAMEWORK_MANIFEST_FILE := $(DEVICE_PATH)/framework_manifest.xml
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/manifest.xml
# Kernel

11
framework_manifest.xml Normal file
View File

@@ -0,0 +1,11 @@
<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>
</hal>
</manifest>

View File

@@ -42,13 +42,4 @@
<instance>imsd</instance>
</interface>
</hal>
<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>
</hal>
</manifest>