Make 2020v10 roborio image work
Something changed from v9 to v10 that either reduced the stack size or
caused the roborio to start enforcing the stack size or *something*.
Bump up the stack size on all of our binaries.
Change-Id: I47df1aabfa8439f7bd12e78b1e6cdbef45c97b5a
diff --git a/aos/init.cc b/aos/init.cc
index e506d86..957899c7 100644
--- a/aos/init.cc
+++ b/aos/init.cc
@@ -62,6 +62,7 @@
InitStart();
aos_core_create_shared_mem(false, for_realtime && ShouldBeRealtime());
logging::RegisterQueueImplementation();
+ ExpandStackSize();
AOS_LOG(INFO, "%s initialized non-realtime\n", program_invocation_short_name);
}