Home | History | Annotate | Line # | Download | only in miniroot
dot.profile revision 1.9.32.1
      1  1.9.32.1     mjf # $NetBSD: dot.profile,v 1.9.32.1 2008/09/28 11:09:16 mjf Exp $
      2       1.1      is #
      3       1.1      is # Copyright (c) 1995 Jason R. Thorpe
      4       1.1      is # Copyright (c) 1994 Christopher G. Demetriou
      5       1.1      is # All rights reserved.
      6       1.1      is # 
      7       1.1      is # Redistribution and use in source and binary forms, with or without
      8       1.1      is # modification, are permitted provided that the following conditions
      9       1.1      is # are met:
     10       1.1      is # 1. Redistributions of source code must retain the above copyright
     11       1.1      is #    notice, this list of conditions and the following disclaimer.
     12       1.1      is # 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      is #    notice, this list of conditions and the following disclaimer in the
     14       1.1      is #    documentation and/or other materials provided with the distribution.
     15       1.1      is # 3. All advertising materials mentioning features or use of this software
     16       1.1      is #    must display the following acknowledgement:
     17       1.8     cgd #          This product includes software developed for the
     18       1.9    salo #          NetBSD Project.  See http://www.NetBSD.org/ for
     19       1.8     cgd #          information about NetBSD.
     20       1.1      is # 4. The name of the author may not be used to endorse or promote products
     21       1.8     cgd #    derived from this software without specific prior written permission.
     22       1.8     cgd # 
     23       1.1      is # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24       1.1      is # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.1      is # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.1      is # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27       1.1      is # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28       1.1      is # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29       1.1      is # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30       1.1      is # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31       1.1      is # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32       1.1      is # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33       1.8     cgd # 
     34       1.8     cgd # <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
     35       1.1      is 
     36       1.1      is PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
     37       1.1      is export PATH
     38       1.1      is TERM=vt220
     39       1.1      is export TERM
     40       1.4   perry HOME=/
     41       1.4   perry export HOME
     42       1.1      is 
     43       1.1      is umask 022
     44       1.1      is 
     45       1.1      is if [ "X${DONEPROFILE}" = "X" ]; then
     46       1.1      is 	DONEPROFILE=YES
     47       1.5     cgd 	export DONEPROFILE
     48       1.1      is 
     49       1.1      is 	# set up some sane defaults
     50       1.2  mhitch 	echo 'erase ^?, werase ^W, kill ^U, intr ^C'
     51       1.2  mhitch 	stty newcrt werase ^W intr ^C kill ^U erase ^? 9600
     52       1.1      is 
     53       1.1      is 	# Select a keyboard map
     54       1.1      is 	_maps=`ls /usr/share/keymaps/amiga | sed 's/\.map//g'`
     55       1.1      is 	while [ ! -z "$_maps" ]; do
     56       1.1      is 		echo "The available keyboard maps are:"
     57       1.1      is 		_num=0
     58       1.1      is 		for i in $_maps; do
     59       1.1      is 			echo "	$_num  $i"
     60       1.1      is 			_num=`expr $_num + 1`
     61       1.1      is 		done
     62       1.1      is 		echo
     63       1.1      is 		echo -n "Select the number of the map you want to activate: "
     64       1.1      is 		read _ans
     65       1.1      is 
     66       1.1      is 		# Delete all non-nummeric characters from the users answer
     67       1.1      is 		if [ ! -z "$_ans" ]; then
     68  1.9.32.1     mjf 			_ans=`echo $_ans | sed 's/[^0-9]//g'`
     69       1.1      is 		fi
     70       1.1      is 
     71       1.1      is 		# Check if the answer is valid (in range). Note that an answer
     72       1.1      is 		# < 0 cannot happen because the sed(1) above also removes the
     73       1.1      is 		# sign.
     74       1.1      is 		if [ -z "$_ans" -o "$_ans" -ge $_num ]; then
     75       1.1      is 		    echo "You entered an invalid response, please try again."
     76       1.1      is 		    continue
     77       1.1      is 		fi
     78       1.1      is 
     79       1.1      is 		# Got a valid answer, activate the map...
     80       1.1      is 		set -- $_maps
     81       1.1      is 		shift $_ans
     82       1.3      is 		export __keymap__=/usr/share/keymaps/amiga/$1.map
     83       1.3      is 		/usr/sbin/loadkmap ${__keymap__}
     84       1.1      is 		break
     85       1.1      is 	done
     86       1.1      is 
     87       1.1      is 	# Installing or upgrading?
     88       1.1      is 	_forceloop=""
     89       1.1      is 	while [ "X${_forceloop}" = X"" ]; do
     90       1.1      is 		echo -n '(I)nstall or (U)pgrade? '
     91       1.1      is 		read _forceloop
     92       1.1      is 		case "$_forceloop" in
     93       1.1      is 			i*|I*)
     94       1.1      is 				/install
     95       1.1      is 				;;
     96       1.1      is 
     97       1.1      is 			u*|U*)
     98       1.1      is 				/upgrade
     99       1.1      is 				;;
    100       1.1      is 
    101       1.1      is 			*)
    102       1.1      is 				_forceloop=""
    103       1.1      is 				;;
    104       1.1      is 		esac
    105       1.1      is 	done
    106       1.1      is fi
    107