NetBSD/distrib/sgimips/miniroot/dot.profile
rafal 3d46bd9251 For reference purposes (as it currently doesn't build): add miniroot build
directory; the ramdisk build also relies on the termcap entry here, so this
isn't totally useless.  All based on work by Scott Taylor (sgimips at
mrynet.com), with bugs most likely added by me.
2002-05-21 20:51:34 +00:00

20 lines
431 B
Plaintext

PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
export PATH
# get the terminal type
_loop=""
while [ "X${_loop}" = X"" ]; do
echo "" >& 2
echo "Setting terminal type. Options:" >& 2
echo "iris-ansi standard IRIX console" >& 2
echo " vt100 for dumb serial terminal" >& 2
echo " xterm for xterm." >& 2
echo "" >& 2
eval `tset -s -m ":?$TERM"`
if [ "X${TERM}" != X"unknown" ]; then
_loop="done"
fi
done
sysinst