From 3206c41a3c03b2c8dc956aa5cf7ffd51fd98d2f0 Mon Sep 17 00:00:00 2001 From: "Daniel C. Sobral" Date: Mon, 1 Nov 1999 08:05:22 +0000 Subject: [PATCH] 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(-) diff --git a/sys/boot/common/interp.c b/sys/boot/common/interp.c index 0d905aa8461..0f4b594fb1f 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 (;;) {