11.4Sjmcneill# $NetBSD: dot.profile,v 1.4 2020/10/11 14:24:31 jmcneill Exp $ 21.1Sthorpej# 31.1Sthorpej# Copyright (c) 1997 Perry E. Metzger 41.1Sthorpej# Copyright (c) 1994 Christopher G. Demetriou 51.1Sthorpej# All rights reserved. 61.1Sthorpej# 71.1Sthorpej# Redistribution and use in source and binary forms, with or without 81.1Sthorpej# modification, are permitted provided that the following conditions 91.1Sthorpej# are met: 101.1Sthorpej# 1. Redistributions of source code must retain the above copyright 111.1Sthorpej# notice, this list of conditions and the following disclaimer. 121.1Sthorpej# 2. Redistributions in binary form must reproduce the above copyright 131.1Sthorpej# notice, this list of conditions and the following disclaimer in the 141.1Sthorpej# documentation and/or other materials provided with the distribution. 151.1Sthorpej# 3. All advertising materials mentioning features or use of this software 161.1Sthorpej# must display the following acknowledgement: 171.1Sthorpej# This product includes software developed for the 181.2Ssalo# NetBSD Project. See http://www.NetBSD.org/ for 191.1Sthorpej# information about NetBSD. 201.1Sthorpej# 4. The name of the author may not be used to endorse or promote products 211.1Sthorpej# derived from this software without specific prior written permission. 221.1Sthorpej# 231.1Sthorpej# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 241.1Sthorpej# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 251.1Sthorpej# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 261.1Sthorpej# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 271.1Sthorpej# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 281.1Sthorpej# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 291.1Sthorpej# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 301.1Sthorpej# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 311.1Sthorpej# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 321.1Sthorpej# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 331.1Sthorpej# 341.1Sthorpej# <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>> 351.1Sthorpej 361.1SthorpejPATH=/sbin:/bin:/usr/bin:/usr/sbin:/ 371.1Sthorpejexport PATH 381.4SjmcneillTERM=wsvt25 391.1Sthorpejexport TERM 401.1SthorpejHOME=/ 411.1Sthorpejexport HOME 421.4SjmcneillBLOCKSIZE=1k 431.4Sjmcneillexport BLOCKSIZE 441.4SjmcneillEDITOR=ed 451.4Sjmcneillexport EDITOR 461.1Sthorpej 471.1Sthorpejumask 022 481.1Sthorpej 491.1SthorpejROOTDEV=/dev/md0a 501.1Sthorpej 511.1Sthorpejif [ "X${DONEPROFILE}" = "X" ]; then 521.1Sthorpej DONEPROFILE=YES 531.1Sthorpej export DONEPROFILE 541.1Sthorpej 551.1Sthorpej # set up some sane defaults 561.1Sthorpej echo 'erase ^?, werase ^W, kill ^U, intr ^C' 571.1Sthorpej stty newcrt werase ^W intr ^C kill ^U erase ^? 581.4Sjmcneill mount -t tmpfs tmpfs /tmp 591.4Sjmcneill mount -t tmpfs tmpfs /var 601.4Sjmcneill mount -t tmpfs -o union tmpfs /etc 611.4Sjmcneill 621.4Sjmcneill mkdir -p /var/run /var/db 631.1Sthorpej 641.1Sthorpej # mount the ramdisk read write 651.1Sthorpej mount -u $ROOTDEV / 661.1Sthorpej 671.4Sjmcneill grep() sed -n "/$1/p" 681.1Sthorpej 691.4Sjmcneill if [ -x /sysinst ]; then 701.4Sjmcneill # run the installation or upgrade script. 711.4Sjmcneill sysinst || stty sane 721.4Sjmcneill else 731.4Sjmcneill echo "This image contains utilities which may be needed" 741.4Sjmcneill echo "to get you out of a pinch." 751.4Sjmcneill fi 761.1Sthorpejfi 77