diff options
author | dcs <dcs@FreeBSD.org> | 1999-11-01 08:05:22 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 1999-11-01 08:05:22 +0000 |
commit | d408c6e54d022c99e6f0119e90c2e2307c445365 (patch) | |
tree | b83ac6620798db0a60be4b70d3dbd2f8bc0cf9cb /sys/boot/common/interp.c | |
parent | 279b76614c4af6c00f3bac1becd03b507a96709d (diff) | |
download | FreeBSD-src-d408c6e54d022c99e6f0119e90c2e2307c445365.zip FreeBSD-src-d408c6e54d022c99e6f0119e90c2e2307c445365.tar.gz |
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. :-)
Diffstat (limited to 'sys/boot/common/interp.c')
-rw-r--r-- | sys/boot/common/interp.c | 4 |
1 files changed, 3 insertions, 1 deletions
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 (;;) { |