diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-26 18:35:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-26 18:35:51 +0000 |
commit | 1cf71b79c8672180173c9bedc91175973aa303ce (patch) | |
tree | a569510f5cfff697c4b92b10a35ff618996c6264 /distrib/sparc/miniroot | |
parent | d1e8bfd539f52ee0cfe92352cc8c033252424a85 (diff) |
update from netbsd
Diffstat (limited to 'distrib/sparc/miniroot')
-rw-r--r-- | distrib/sparc/miniroot/dot.profile | 78 | ||||
-rw-r--r-- | distrib/sparc/miniroot/list | 26 |
2 files changed, 104 insertions, 0 deletions
diff --git a/distrib/sparc/miniroot/dot.profile b/distrib/sparc/miniroot/dot.profile new file mode 100644 index 00000000000..ddcbb3c887c --- /dev/null +++ b/distrib/sparc/miniroot/dot.profile @@ -0,0 +1,78 @@ +# $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $ +# +# Copyright (c) 1995 Jason R. Thorpe +# Copyright (c) 1994 Christopher G. Demetriou +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# 3. All advertising materials mentioning features or use of this software +# must display the following acknowledgement: +# This product includes software developed by Christopher G. Demetriou. +# 4. The name of the author may not be used to endorse or promote products +# derived from this software without specific prior written permission +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +PATH=/sbin:/bin:/usr/bin:/usr/sbin:/ +export PATH +TERM=sun +export TERM + +umask 022 + +if [ "X${DONEPROFILE}" = "X" ]; then + DONEPROFILE=YES + + # set up some sane defaults + echo 'erase ^H, werase ^W, kill ^U, intr ^C' + stty newcrt werase ^W intr ^C kill ^U erase ^H 9600 + + # run update, so that installed software is written as it goes. + update + + # get the terminal type + _forceloop="" + while [ "X${_forceloop}" = X"" ]; do + eval `tset -s -m ":?$TERM"` + if [ "X${TERM}" != X"unknown" ]; then + _forceloop="done" + fi + done + + # Installing or upgrading? + _forceloop="" + while [ "X${_forceloop}" = X"" ]; do + echo -n '(I)nstall or (U)pgrade? ' + read _forceloop + case "$_forceloop" in + i*|I*) + /install + ;; + + u*|U*) + /upgrade + ;; + + *) + _forceloop="" + ;; + esac + done +fi diff --git a/distrib/sparc/miniroot/list b/distrib/sparc/miniroot/list new file mode 100644 index 00000000000..4a42b4a5135 --- /dev/null +++ b/distrib/sparc/miniroot/list @@ -0,0 +1,26 @@ +# $NetBSD: list,v 1.1 1995/12/18 22:54:44 pk Exp $ + +# We can only get this program this way. +COPY ${DESTDIR}/sbin/mount_mfs sbin/mount_mfs +SPECIAL chmod 555 sbin/mount_mfs + +# we need the contents of /usr/mdec +COPYDIR ${DESTDIR}/usr/mdec usr/mdec + +# copy the kernel +COPY ${CURDIR}/../../sys/arch/sparc/compile/GENERIC/netbsd netbsd + +# various files that we need in /etc for the install +COPY ${DESTDIR}/etc/disktab etc/disktab.shadow +SYMLINK /tmp/disktab.shadow etc/disktab +SYMLINK /tmp/fstab.shadow etc/fstab +SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf +SYMLINK /tmp/hosts etc/hosts + +# and the installation tools +COPY ${ARCHDIR}/dot.profile .profile +COPY ${ARCHDIR}/../install.sh install +COPY ${ARCHDIR}/../upgrade.sh upgrade +SPECIAL chmod 755 install upgrade +COPY ${DESTDIR}/usr/mdec/boot boot +SPECIAL sync; ${DESTDIR}/usr/mdec/binstall -v ffs ${TARGDIR} |