From 75b17dab43c511d1cecc70c370e9f8283dfbf547 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 26 Jul 2013 11:05:37 +0200 Subject: [PATCH] block: suggest a default delay_root value of 5 seconds, since it is almost always needed when running block from jffs2 --- block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block.c b/block.c index e8f7d3c..194eb4a 100644 --- a/block.c +++ b/block.c @@ -717,7 +717,7 @@ static int mount_extroot(char *cfg) pr = find_block_info(m->uuid, m->label, NULL); if (!pr && delay_root){ - fprintf(stderr, "extroot: is not ready yet, retrying in %ui seconds\n", delay_root); + fprintf(stderr, "extroot: is not ready yet, retrying in %u seconds\n", delay_root); sleep(delay_root); mkblkdev(); cache_load(0); @@ -835,7 +835,7 @@ static int main_detect(int argc, char **argv) printf("\toption\tanon_mount\t'0'\n"); printf("\toption\tauto_swap\t'1'\n"); printf("\toption\tauto_mount\t'1'\n"); - printf("\toption\tdelay_root\t'0'\n"); + printf("\toption\tdelay_root\t'5'\n"); printf("\toption\tcheck_fs\t'0'\n\n"); list_for_each_entry(pr, &devices, list) print_block_uci(pr); -- 2.11.0