mirror of
https://github.com/Evolution-X-Devices/device_google_wahoo
synced 2026-01-28 13:18:23 +00:00
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. Bug: 68662838 Test: vts_treble_vintf_test atcmdfwd service is served Change-Id: I9df05206fbe067ddf19a96fc52aba6b2cc922172 (cherry picked from commit b2895ddbcf1cc0b8986b4a80a43a3f0b6eb9fd66)
13 lines
327 B
XML
13 lines
327 B
XML
<manifest version="1.0" type="framework">
|
|
<hal format="hidl">
|
|
<name>vendor.qti.atcmdfwd</name>
|
|
<transport>hwbinder</transport>
|
|
<version>1.0</version>
|
|
<interface>
|
|
<name>IAtCmdFwd</name>
|
|
<instance>AtCmdFwdService</instance>
|
|
</interface>
|
|
</hal>
|
|
</manifest>
|
|
|