[microfuchsia] Disable VM console by default

This disables the interactive console for VMs launched by microfuchsiad
by default as they trigger b/379163126. Console support can be
re-enabled by modifying the cfg in microfuchsiad/Android.bp. When
disabled, logs from the VM will be routed to the Android system log
instead.

Bug: 379163126
Change-Id: I0180ce58e48b404d20527f1fa9c893a52b16b9ed
diff --git a/microfuchsia/microfuchsiad/Android.bp b/microfuchsia/microfuchsiad/Android.bp
index ddf360d..2c2d2f2 100644
--- a/microfuchsia/microfuchsiad/Android.bp
+++ b/microfuchsia/microfuchsiad/Android.bp
@@ -19,6 +19,13 @@
         "liblibc",
         "libvmclient",
     ],
+    cfgs: [
+        // Enable this to configure microfuchsia VM instances with an interactive serial console. This console can
+        // be attached to using the 'vm console' command.
+        // Warning - enabling this will cause the VM to stall out unless a console is attached.
+        // See b/379163126 for details.
+        // "enable_console",
+    ],
     apex_available: [
         "com.android.microfuchsia",
     ],