Set android_keymint_needed=N for microdroid
The u-boot bootloader has recently been updated to mandate the existence
of a keymint console and to communicate with keymint using the console.
Until microdroid can support the same same use case, don't let the
bootloader demand the keymint console. This is done by setting the new
env var android_keymint_needed to N.
Bug: N/A
Test: atest MicrodroidHostTestCases
Change-Id: I145af591ca4334251efce82d97db535aca015a97
diff --git a/microdroid/uboot-env-x86_64.txt b/microdroid/uboot-env-x86_64.txt
index 0064cac..07a9b18 100644
--- a/microdroid/uboot-env-x86_64.txt
+++ b/microdroid/uboot-env-x86_64.txt
@@ -13,3 +13,6 @@
# loadaddr variable.
loadaddr=0x02000000
fdtaddr=0x40000000
+
+# Microdroid doesn't use keymint yet
+android_keymint_needed=N
diff --git a/microdroid/uboot-env.txt b/microdroid/uboot-env.txt
index b5f3968..0385b50 100644
--- a/microdroid/uboot-env.txt
+++ b/microdroid/uboot-env.txt
@@ -7,3 +7,6 @@
bootdelay=0
fdtaddr=0x80000000
+
+# Microdroid doesn't use keymint yet
+android_keymint_needed=N