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
46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<manifest version="1.0" type="device">
|
|
<hal format="hidl">
|
|
<name>android.hardware.radio</name>
|
|
<transport>hwbinder</transport>
|
|
<fqname>@1.4::IRadio/slot1</fqname>
|
|
<fqname>@1.2::ISap/slot1</fqname>
|
|
</hal>
|
|
<hal format="hidl">
|
|
<name>android.hardware.radio.config</name>
|
|
<transport>hwbinder</transport>
|
|
<version>1.1</version>
|
|
<interface>
|
|
<name>IRadioConfig</name>
|
|
<instance>default</instance>
|
|
</interface>
|
|
</hal>
|
|
<hal format="hidl">
|
|
<name>vendor.samsung.hardware.radio</name>
|
|
<transport>hwbinder</transport>
|
|
<version>2.1</version>
|
|
<interface>
|
|
<name>ISehRadio</name>
|
|
<instance>slot1</instance>
|
|
</interface>
|
|
</hal>
|
|
<hal format="hidl">
|
|
<name>vendor.samsung.hardware.radio.bridge</name>
|
|
<transport>hwbinder</transport>
|
|
<version>2.0</version>
|
|
<interface>
|
|
<name>ISehBridge</name>
|
|
<instance>slot1</instance>
|
|
</interface>
|
|
</hal>
|
|
<hal format="hidl">
|
|
<name>vendor.samsung.hardware.radio.channel</name>
|
|
<transport>hwbinder</transport>
|
|
<version>2.0</version>
|
|
<interface>
|
|
<name>ISehChannel</name>
|
|
<instance>epdgd</instance>
|
|
<instance>imsd</instance>
|
|
</interface>
|
|
</hal>
|
|
</manifest>
|