mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
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:
parent
b0cb4883b1
commit
03820e7a36
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86608
@ -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 (;;) {
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user