Upper case the FreeBSD loader prompt.

On OFW based machines, it is just too confusing having the firmware and
OS loader giving the same prompt.  This is a nice compromise that 99% of the
users on non-OFW platforms will probably not even notice.
This commit is contained in:
David E. O'Brien 2001-11-19 17:30:26 +00:00
parent b0cb4883b1
commit 03820e7a36
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86608
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ interact(void)
if (getenv("prompt") == NULL)
setenv("prompt", "${interpret}", 1);
if (getenv("interpret") == NULL)
setenv("interpret", "ok", 1);
setenv("interpret", "OK", 1);
for (;;) {

View File

@ -299,7 +299,7 @@ bf_run(char *line)
if (result == VM_USEREXIT)
panic("interpreter exit");
setenv("interpret", bf_vm->state ? "" : "ok", 1);
setenv("interpret", bf_vm->state ? "" : "OK", 1);
return result;
}