Add IPC port to manifest
If the port for an application is not available, ql-tipc
immediately returns with an error without waiting for the port
unless that port is listed in the manifest. This adds the AVB
port to the manifest to fix a race between the bootloader
connecting to AVB and the app starting during boot.
Bug: 217580763
Change-Id: I77dcb9354cb3fbc389ee99193f3f2d398edff140
diff --git a/manifest.json b/manifest.json
index 5d46dfa..e51213b 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,5 +1,14 @@
{
"uuid": "905bcb84-2dc4-419d-b951-7255027d318c",
"min_heap": 8192,
- "min_stack": 4096
+ "min_stack": 4096,
+ "start_ports": [
+ {
+ "name": "com.android.trusty.avb",
+ "flags": {
+ "allow_ta_connect": false,
+ "allow_ns_connect": true
+ }
+ }
+ ]
}