From 1eeed263ba4e5852dfa71a7c44f4e725fa8c03aa Mon Sep 17 00:00:00 2001 From: apb Date: Tue, 6 May 2008 09:48:00 +0000 Subject: [PATCH] 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. --- sys/arch/i386/stand/boot/boot2.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/arch/i386/stand/boot/boot2.c b/sys/arch/i386/stand/boot/boot2.c index 2f475abfcd10..52fa09ff50b0 100644 --- a/sys/arch/i386/stand/boot/boot2.c +++ b/sys/arch/i386/stand/boot/boot2.c @@ -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. @@ -485,9 +485,8 @@ doboottypemenu(void) } else if (bootconf.timeout == 0) choice = bootconf.def; else { - printf("\nPress the key for your chosen option or "); - printf("Return to choose the default (%d)\n", - bootconf.def + 1); + printf("\nChoose an option; RETURN for default; " + "SPACE to stop countdown.\n") printf("Option %d will be chosen in ", bootconf.def + 1); c = awaitkey(bootconf.timeout, 1);