diff options
| author | Bruno Martins <bgcngm@gmail.com> | 2018-04-02 21:34:19 +0100 |
|---|---|---|
| committer | Bruno Martins <bgcngm@gmail.com> | 2018-04-04 00:35:44 +0100 |
| commit | 1ff2964471f1bb6d6a1f626e4d9a7ab9f45efda0 (patch) | |
| tree | 2472a1717ae37466e0b64950719c066d85690501 | |
| parent | 3e87f5325e35c61ebfe2df467cc607ec7d38ae93 (diff) | |
flounder: Extend HIDL manifest for LTE variant
Change-Id: I189493d5290376c5babe79d61fe067d99ede383a
| -rw-r--r-- | flounder_lte/BoardConfig.mk | 3 | ||||
| -rw-r--r-- | manifest_lte.xml | 20 |
2 files changed, 23 insertions, 0 deletions
diff --git a/flounder_lte/BoardConfig.mk b/flounder_lte/BoardConfig.mk index ef80b9b..f07483f 100644 --- a/flounder_lte/BoardConfig.mk +++ b/flounder_lte/BoardConfig.mk @@ -1 +1,4 @@ include device/htc/flounder/BoardConfig.mk + +# HIDL +DEVICE_MANIFEST_FILE += device/htc/flounder/manifest_lte.xml diff --git a/manifest_lte.xml b/manifest_lte.xml new file mode 100644 index 0000000..557eb5d --- /dev/null +++ b/manifest_lte.xml @@ -0,0 +1,20 @@ +<manifest version="1.0" type="device"> + <hal format="hidl"> + <name>android.hardware.radio</name> + <transport>hwbinder</transport> + <version>1.1</version> + <interface> + <name>IRadio</name> + <instance>slot1</instance> + </interface> + </hal> + <hal format="hidl"> + <name>android.hardware.radio.deprecated</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IOemHook</name> + <instance>slot1</instance> + </interface> + </hal> +</manifest> |
