led init order (#2997)

This commit is contained in:
Matthew Kennedy 2021-07-20 11:16:43 -07:00 committed by GitHub
parent 8eb407627e
commit 0d2d40ccec
1 changed files with 3 additions and 2 deletions

View File

@ -298,6 +298,9 @@ void runRusEfiWithConfig() {
return; return;
} }
// Start this early - it will start LED blinking and such
startStatusThreads();
/** /**
* Initialize hardware drivers * Initialize hardware drivers
*/ */
@ -337,8 +340,6 @@ void runRusEfiWithConfig() {
initTimePerfActions(); initTimePerfActions();
#endif #endif
startStatusThreads();
runSchedulingPrecisionTestIfNeeded(); runSchedulingPrecisionTestIfNeeded();
} }
} }