Change the wording of a message, to make it clear that pressing SPACE

will stop the countdown timer.  The message now reads "Choose an option;
RETURN for default; SPACE to stop countdown."  It no longer says what
the default choice actually is, because the message printed on the
following line will do that.
This commit is contained in:
apb 2008-05-06 09:48:00 +00:00
parent 65d8db46d0
commit 1eeed263ba
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot2.c,v 1.28 2008/05/05 08:36:55 chris Exp $ */ /* $NetBSD: boot2.c,v 1.29 2008/05/06 09:48:00 apb Exp $ */
/*- /*-
* Copyright (c) 2008 The NetBSD Foundation, Inc. * Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -485,9 +485,8 @@ doboottypemenu(void)
} else if (bootconf.timeout == 0) } else if (bootconf.timeout == 0)
choice = bootconf.def; choice = bootconf.def;
else { else {
printf("\nPress the key for your chosen option or "); printf("\nChoose an option; RETURN for default; "
printf("Return to choose the default (%d)\n", "SPACE to stop countdown.\n")
bootconf.def + 1);
printf("Option %d will be chosen in ", printf("Option %d will be chosen in ",
bootconf.def + 1); bootconf.def + 1);
c = awaitkey(bootconf.timeout, 1); c = awaitkey(bootconf.timeout, 1);