11.3Smartin# $NetBSD: dot.profile,v 1.3 2020/01/09 19:17:41 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.2Ssalo# 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 # mount /tmp on mfs, to avoid filling the md 561.1Stsutsui mount -t mfs swap /tmp 571.1Stsutsui 581.1Stsutsui # get the terminal type 591.1Stsutsui _forceloop="" 601.1Stsutsui while [ "X${_forceloop}" = X"" ]; do 611.1Stsutsui eval `tset -s -m ":?$TERM"` 621.1Stsutsui if [ "X${TERM}" != X"unknown" ]; then 631.1Stsutsui _forceloop="done" 641.1Stsutsui fi 651.1Stsutsui done 661.1Stsutsui 671.1Stsutsui # Installing or upgrading? 681.1Stsutsui _forceloop="" 691.1Stsutsui while [ "X${_forceloop}" = X"" ]; do 701.1Stsutsui echo -n '(I)nstall, (S)hell or (H)alt ? ' 711.1Stsutsui read _forceloop 721.1Stsutsui case "$_forceloop" in 731.1Stsutsui i*|I*) 741.3Smartin # /sysinst || stty sane 751.1Stsutsui echo 'Sorry, sysinst is not ready on this port.' 761.1Stsutsui /bin/sh 771.1Stsutsui ;; 781.1Stsutsui 791.1Stsutsui s*|S*) 801.1Stsutsui /bin/sh 811.1Stsutsui ;; 821.1Stsutsui 831.1Stsutsui h*|H*) 841.1Stsutsui /sbin/halt 851.1Stsutsui ;; 861.1Stsutsui 871.1Stsutsui *) 881.1Stsutsui _forceloop="" 891.1Stsutsui ;; 901.1Stsutsui esac 911.1Stsutsui done 921.1Stsutsuifi 93