led init order (#2997)

This commit is contained in:
Matthew Kennedy 2021-07-20 11:16:43 -07:00 committed by GitHub
parent 7b44b5f5f3
commit 29808150e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

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