xref: /original-bsd/sys/pmax/dist/buildmini (revision 3705696b)
1#!/bin/sh -
2#
3# Copyright (c) 1992, 1993
4#	The Regents of the University of California.  All rights reserved.
5#
6# %sccs.include.redist.sh%
7#
8#	@(#)buildmini	7.3 (Berkeley) 06/10/93
9#
10
11dist=/sys/pmax/dist
12miniroot=rz1b
13minimnt=/tmp/mini
14
15date
16mkdir ${minimnt}
17umount /dev/${miniroot}
18newfs -s 10240 ${miniroot}
19fsck /dev/r${miniroot}
20mount /dev/${miniroot} ${minimnt}
21cd ${minimnt}; sh ${dist}/get
22cd ${dist}; sync
23umount /dev/${miniroot}
24fsck /dev/r${miniroot}
25date
26