dot.profile revision 1.2
11.2Smartin# $NetBSD: dot.profile,v 1.2 2020/01/09 19:17:43 martin Exp $
21.1Stsutsui#
31.1Stsutsui# Copyright (c) 1995 Jason R. Thorpe
41.1Stsutsui# Copyright (c) 1994 Christopher G. Demetriou
51.1Stsutsui# All rights reserved.
61.1Stsutsui# 
71.1Stsutsui# Redistribution and use in source and binary forms, with or without
81.1Stsutsui# modification, are permitted provided that the following conditions
91.1Stsutsui# are met:
101.1Stsutsui# 1. Redistributions of source code must retain the above copyright
111.1Stsutsui#    notice, this list of conditions and the following disclaimer.
121.1Stsutsui# 2. Redistributions in binary form must reproduce the above copyright
131.1Stsutsui#    notice, this list of conditions and the following disclaimer in the
141.1Stsutsui#    documentation and/or other materials provided with the distribution.
151.1Stsutsui# 3. All advertising materials mentioning features or use of this software
161.1Stsutsui#    must display the following acknowledgement:
171.1Stsutsui#          This product includes software developed for the
181.1Stsutsui#          NetBSD Project.  See http://www.NetBSD.org/ for
191.1Stsutsui#          information about NetBSD.
201.1Stsutsui# 4. The name of the author may not be used to endorse or promote products
211.1Stsutsui#    derived from this software without specific prior written permission.
221.1Stsutsui# 
231.1Stsutsui# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
241.1Stsutsui# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
251.1Stsutsui# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
261.1Stsutsui# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
271.1Stsutsui# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
281.1Stsutsui# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
291.1Stsutsui# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
301.1Stsutsui# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
311.1Stsutsui# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
321.1Stsutsui# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
331.1Stsutsui# 
341.1Stsutsui# <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
351.1Stsutsui
361.1StsutsuiPATH=/sbin:/bin:/usr/bin:/usr/sbin:/
371.1Stsutsuiexport PATH
381.1StsutsuiTERM=vt100
391.1Stsutsuiexport TERM
401.1StsutsuiHOME=/
411.1Stsutsuiexport HOME
421.1Stsutsui
431.1Stsutsuiumask 022
441.1Stsutsui
451.1Stsutsuiif [ "X${DONEPROFILE}" = "X" ]; then
461.1Stsutsui	DONEPROFILE=YES
471.1Stsutsui
481.1Stsutsui	# set up some sane defaults
491.1Stsutsui	echo 'erase ^H, werase ^W, kill ^U, intr ^C, status ^T'
501.1Stsutsui	stty newcrt werase ^W intr ^C kill ^U erase ^H status ^T 9600
511.1Stsutsui
521.1Stsutsui	# mount root read-write
531.1Stsutsui	mount -u /dev/md0a /
541.1Stsutsui
551.1Stsutsui	# get the terminal type
561.1Stsutsui	_forceloop=""
571.1Stsutsui	while [ "X${_forceloop}" = X"" ]; do
581.1Stsutsui		eval `tset -s -m ":?$TERM"`
591.1Stsutsui		if [ "X${TERM}" != X"unknown" ]; then
601.1Stsutsui			_forceloop="done"
611.1Stsutsui		fi
621.1Stsutsui	done
631.1Stsutsui
641.1Stsutsui	# Installing or upgrading?
651.1Stsutsui	_forceloop=""
661.1Stsutsui	while [ "X${_forceloop}" = X"" ]; do
671.1Stsutsui		echo -n '(I)nstall, (S)hell or (H)alt ? '
681.1Stsutsui		read _forceloop
691.1Stsutsui		case "$_forceloop" in
701.1Stsutsui			i*|I*)
711.2Smartin				/sysinst || stty sane
721.1Stsutsui				;;
731.1Stsutsui
741.1Stsutsui			s*|S*)
751.1Stsutsui				/bin/sh
761.1Stsutsui				;;
771.1Stsutsui
781.1Stsutsui			h*|H*)
791.1Stsutsui				/sbin/halt
801.1Stsutsui				;;
811.1Stsutsui
821.1Stsutsui			*)
831.1Stsutsui				_forceloop=""
841.1Stsutsui				;;
851.1Stsutsui		esac
861.1Stsutsui	done
871.1Stsutsuifi
88