3d46bd9251
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.
20 lines
431 B
Plaintext
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
|