-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
platform: add keymaster configuration
the keymaster configuration was moved from common to platforms Signed-off-by: Alin Jerpelea <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,15 @@ PRODUCT_PACKAGES += \ | |
init.recovery.akari \ | ||
init.akari | ||
|
||
# Keymaster 3 passthrough service | ||
PRODUCT_PACKAGES += \ | ||
[email protected] | ||
|
||
PRODUCT_PROPERTY_OVERRIDES += \ | ||
ro.vendor.keymaster.version=v3 | ||
|
||
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/vintf/android.hw.keymaster_v3.xml | ||
|
||
# Telephony Packages (AOSP) | ||
PRODUCT_PACKAGES += \ | ||
InCallUI \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<manifest version="1.0" type="device"> | ||
<hal format="hidl"> | ||
<name>android.hardware.keymaster</name> | ||
<transport>hwbinder</transport> | ||
<version>3.0</version> | ||
<interface> | ||
<name>IKeymasterDevice</name> | ||
<instance>default</instance> | ||
</interface> | ||
</hal> | ||
</manifest> |