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