diff options
author | 1997-08-30 17:43:40 +0000 | |
---|---|---|
committer | 1997-08-30 17:43:40 +0000 | |
commit | 8fd824e55aede18bc5bd75c6d1e3a0d935ccd825 (patch) | |
tree | d16e3af8aa9c9234d392b53788a1b7f7af445d40 | |
parent | We use pcvt on the console so we need a vt220 termcap. (diff) | |
download | wireguard-openbsd-8fd824e55aede18bc5bd75c6d1e3a0d935ccd825.tar.xz wireguard-openbsd-8fd824e55aede18bc5bd75c6d1e3a0d935ccd825.zip |
default term type is vt220
-rw-r--r-- | distrib/i386/floppies/ramdisk/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/ramdisk/install.md b/distrib/i386/floppies/ramdisk/install.md index 2694774de58..a8079aab7c7 100644 --- a/distrib/i386/floppies/ramdisk/install.md +++ b/distrib/i386/floppies/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.11 1997/05/14 21:39:13 millert Exp $ +# $OpenBSD: install.md,v 1.12 1997/08/30 17:43:40 millert Exp $ # # # Copyright rc) 1996 The NetBSD Foundation, Inc. @@ -47,8 +47,8 @@ md_set_term() { if [ ! -z "$TERM" ]; then return fi - echo -n "Specify terminal type [pc3]: " - getresp "pc3" + echo -n "Specify terminal type [vt220]: " + getresp "vt220" TERM="$resp" export TERM } |