diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-04-20 14:29:00 +1000 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-04-20 16:08:55 +1000 |
commit | 5c16bba845d94ef86ad6fe6fa211cbc148e77717 (patch) | |
tree | 17c1c45eed750e117d16e2b99ed5c8b7d5f3c4ab | |
parent | 03eba1d68dbf7ffc9690d73f957c33b8f492e627 (diff) | |
download | petitboot-5c16bba845d94ef86ad6fe6fa211cbc148e77717.zip petitboot-5c16bba845d94ef86ad6fe6fa211cbc148e77717.tar.gz |
ui/ncurses: Increase timeout when waiting for pb-discover
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
-rw-r--r-- | ui/ncurses/nc-cui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ncurses/nc-cui.c b/ui/ncurses/nc-cui.c index aa889ea..fb104f3 100644 --- a/ui/ncurses/nc-cui.c +++ b/ui/ncurses/nc-cui.c @@ -926,7 +926,7 @@ struct cui *cui_init(void* platform_info, /* Loop here for scripts that just started the server. */ retry_start: - for (i = start_deamon ? 2 : 10; i; i--) { + for (i = start_deamon ? 2 : 15; i; i--) { cui->client = discover_client_init(cui->waitset, &cui_client_ops, cui); if (cui->client || !i) |