From d408c6e54d022c99e6f0119e90c2e2307c445365 Mon Sep 17 00:00:00 2001 From: dcs Date: Mon, 1 Nov 1999 08:05:22 +0000 Subject: Changes the default prompt to "ok". Mike says the whole idea of a current device was a bad idea in first place, and will be doing away with currdev. Anyway, people are not supposed to even notice this. :-) --- sys/boot/common/interp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/boot/common/interp.c') diff --git a/sys/boot/common/interp.c b/sys/boot/common/interp.c index 0d905aa..0f4b594 100644 --- a/sys/boot/common/interp.c +++ b/sys/boot/common/interp.c @@ -112,7 +112,9 @@ interact(void) */ printf("\nType '?' for a list of commands, 'help' for more detailed help.\n"); if (getenv("prompt") == NULL) - setenv("prompt", "${currdev}>", 1); + setenv("prompt", "${interpret}\n", 1); + if (getenv("interpret") == NULL) + setenv("interpret", "ok", 1); for (;;) { -- cgit v1.1