Reverse trailer/delay order (delay first)
This commit is contained in:
parent
ea46d51176
commit
9e5e6e7b51
1 changed files with 3 additions and 3 deletions
|
@ -568,14 +568,14 @@ void exec_image(char *image)
|
|||
}
|
||||
#endif
|
||||
|
||||
/* Run the trailer function just before starting Minix. */
|
||||
if (!run_trailer()) { errno= 0; return; }
|
||||
|
||||
/* Do delay if wanted. */
|
||||
if((delayvalue = b_value("bootdelay")) != nil > 0) {
|
||||
delay(delayvalue);
|
||||
}
|
||||
|
||||
/* Run the trailer function just before starting Minix. */
|
||||
if (!run_trailer()) { errno= 0; return; }
|
||||
|
||||
/* Translate the boot parameters to what Minix likes best. */
|
||||
if (!params2params(params, sizeof(params))) { errno= 0; return; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue