Enable 2 legacy serial ports for microdroid

Recent GKIs disable the 8250 serial core uarts by default, because it
was causing rogue MMIO accesses on ARM64. We need two, so this change
enables two again.

- /dev/ttyS0: console
- /dev/ttyS1: serial device to notify failure

Bug: 220071963
Test: boot microdroid and see /dev/ttyS0, /dev/ttyS1
Test: write to /dev/ttyS1 and see virtualizationservice log
Change-Id: I8ad2f5c69bf7b0088a6169bf3fdd904fcf12dc06
diff --git a/microdroid/bootconfig.common b/microdroid/bootconfig.common
index eda95a2..362ff23 100644
--- a/microdroid/bootconfig.common
+++ b/microdroid/bootconfig.common
@@ -1,2 +1,3 @@
 androidboot.first_stage_console = 1
 androidboot.hardware = microdroid
+kernel.8250.nr_uarts = 2