diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-05 03:13:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-05 03:13:02 +0000 |
commit | b505980bea9b094238633e541fa2da557878e795 (patch) | |
tree | 1347c4ebfc4fdf1686bfa16d4d963535225b6c8d /distrib/vax/ramdisk | |
parent | 1869267f39eac9c47fa893e8675dbb1382dad731 (diff) |
skip term initialization, someone should really debug why terminal mucking happens as a result.. but not me.. not now..
Diffstat (limited to 'distrib/vax/ramdisk')
-rw-r--r-- | distrib/vax/ramdisk/dot.profile | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/distrib/vax/ramdisk/dot.profile b/distrib/vax/ramdisk/dot.profile index 4b07810874d..042b37cd473 100644 --- a/distrib/vax/ramdisk/dot.profile +++ b/distrib/vax/ramdisk/dot.profile @@ -1,4 +1,4 @@ -# $OpenBSD: dot.profile,v 1.7 2002/04/01 01:31:40 deraadt Exp $ +# $OpenBSD: dot.profile,v 1.8 2002/04/05 03:13:01 deraadt Exp $ # $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $ # # Copyright (c) 1995 Jason R. Thorpe @@ -49,22 +49,22 @@ if [ "X${DONEPROFILE}" = "X" ]; then mount -u /dev/rd0a / # set up some sane defaults - echo 'erase ^H, werase ^W, kill ^U, intr ^C' - stty newcrt werase ^W intr ^C kill ^U erase ^H 9600 + echo 'erase ^?, werase ^W, kill ^U, intr ^C' + stty newcrt werase ^W intr ^C kill ^U erase ^? 9600 - # get the terminal type - _forceloop="" - while [ "X$_forceloop" = X"" ]; do - echo "Supported terminals are: $TERMS" - eval `tset -s -m ":?$TERM"` - if [ "X$TERM" != X"unknown" ]; then - _forceloop="done" - fi - done - export TERM - - EDITOR="" - export EDITOR +# # get the terminal type +# _forceloop="" +# while [ "X$_forceloop" = X"" ]; do +# echo "Supported terminals are: $TERMS" +# eval `tset -s -m ":?$TERM"` +# if [ "X$TERM" != X"unknown" ]; then +# _forceloop="done" +# fi +# done +# export TERM +# +# EDITOR="" +# export EDITOR # Installing or upgrading? _forceloop="" |