Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6525839c authored by Will Mcvicker's avatar Will Mcvicker Committed by Automerger Merge Worker
Browse files

Merge "first_stage_init: increase serial console tries to 50" into rvc-dev am:...

Merge "first_stage_init: increase serial console tries to 50" into rvc-dev am: 51ae53fa am: c7aa8120

Change-Id: I42202f606534f8dbac6dc841758a4079ec643d20
parents 5fdfa490 c7aa8120
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ void StartConsole() {
        return;
    }
    int fd = -1;
    int tries = 10;
    int tries = 50; // should timeout after 5s
    // The device driver for console may not be ready yet so retry for a while in case of failure.
    while (tries--) {
        fd = open("/dev/console", O_RDWR);