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 Keymaster
port to the manifest to fix a race between the bootloader
connecting to Keymaster and the app starting during boot.

Bug: 217580763
Change-Id: Ica2962e2962e05790c4f9b230165118c92dfac42
diff --git a/manifest.json b/manifest.json
index 1832c1d..ab87fb9 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,5 +1,15 @@
 {
     "uuid": "5f902ace-5e5c-4cd8-ae54-87b88c22ddaf",
     "min_heap": 106496,
-    "min_stack": 32768
+    "min_stack": 32768,
+    "start_ports": [
+        {
+            "name": "com.android.trusty.keymaster",
+            "flags": {
+                "allow_ta_connect": false,
+                "allow_ns_connect": true
+            }
+        }
+    ]
+
 }