Pull the boot timeout for the boot_params header.

Allows it to be set to a very large number so the boot on Soekris systems
can be interrupted.
This commit is contained in:
dsl 2005-11-13 22:23:30 +00:00
parent 2ca444e0bd
commit c310ecd73c
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.10 2005/11/11 21:42:13 dsl Exp $ */ /* $NetBSD: main.c,v 1.11 2005/11/13 22:23:30 dsl Exp $ */
/* /*
* Copyright (c) 1996 * Copyright (c) 1996
@ -55,8 +55,6 @@ int debug;
extern char bootprog_name[], bootprog_rev[], bootprog_date[], extern char bootprog_name[], bootprog_rev[], bootprog_date[],
bootprog_maker[]; bootprog_maker[];
#define TIMEOUT 5
int main(void); int main(void);
void command_help __P((char *)); void command_help __P((char *));
@ -130,7 +128,7 @@ main(void)
printf("Press return to boot now, any other key for boot menu\n"); printf("Press return to boot now, any other key for boot menu\n");
printf("Starting in "); printf("Starting in ");
c = awaitkey(TIMEOUT, 1); c = awaitkey(boot_params.bp_timeout, 1);
if ((c != '\r') && (c != '\n') && (c != '\0')) { if ((c != '\r') && (c != '\n') && (c != '\0')) {
printf("type \"?\" or \"help\" for help.\n"); printf("type \"?\" or \"help\" for help.\n");
bootmenu(); /* does not return */ bootmenu(); /* does not return */