From: Jo-Philipp Wich Date: Fri, 26 Jul 2013 09:05:37 +0000 (+0200) Subject: block: suggest a default delay_root value of 5 seconds, since it is almost always... X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubox.git;a=commitdiff_plain;h=75b17dab43c511d1cecc70c370e9f8283dfbf547;ds=sidebyside block: suggest a default delay_root value of 5 seconds, since it is almost always needed when running block from jffs2 --- 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);