153209Sralph#!/bin/sh - 253209Sralph# 3*63211Sbostic# Copyright (c) 1992, 1993 4*63211Sbostic# The Regents of the University of California. All rights reserved. 553209Sralph# 653209Sralph# %sccs.include.redist.sh% 753209Sralph# 8*63211Sbostic# @(#)buildmini 7.3 (Berkeley) 06/10/93 953209Sralph# 1053209Sralph 1160303Sralphdist=/sys/pmax/dist 1260303Sralphminiroot=rz1b 1353209Sralphminimnt=/tmp/mini 1453209Sralph 1553209Sralphdate 1653209Sralphmkdir ${minimnt} 1753209Sralphumount /dev/${miniroot} 1860303Sralphnewfs -s 10240 ${miniroot} 1960303Sralphfsck /dev/r${miniroot} 2053209Sralphmount /dev/${miniroot} ${minimnt} 2153209Sralphcd ${minimnt}; sh ${dist}/get 2253209Sralphcd ${dist}; sync 2353209Sralphumount /dev/${miniroot} 2453209Sralphfsck /dev/r${miniroot} 2553209Sralphdate 26