[comp.os.minix] New Bootstrapper Part 0 of 3

ncoverby@ndsuvax.UUCP (Glen Overby) (05/11/89)

I have developed a new bootstrapper for Minix which loads the system from
files on a filesystem (possibly on a hard disk) rather than an image
diskette.  See the README file in Part 1 of this posting set for all
the details.

		Glen Overby	<ncoverby@plains.nodak.edu>
	uunet!ndsuvax!ncoverby (UUCP)	ncoverby@ndsuvax (Bitnet)

#! /bin/sh
# This is a shell archive, meaning:
# 1. Remove everything above the #! /bin/sh line.
# 2. Save the resulting text in a file.
# 3. Execute the file with /bin/sh (not csh) to create the directories:
#   b2b
#   kernel
#   fs
#   mm
#   h
#   lib
# This archive created: Tue May  9 12:01:04 CDT 1989
export PATH; PATH=/bin:$PATH
if test ! -d 'b2b'
then
	echo shar: creating directory "'b2b'"
	mkdir 'b2b'
fi
if test ! -d 'kernel'
then
	echo shar: creating directory "'kernel'"
	mkdir 'kernel'
fi
if test ! -d 'fs'
then
	echo shar: creating directory "'fs'"
	mkdir 'fs'
fi
if test ! -d 'mm'
then
	echo shar: creating directory "'mm'"
	mkdir 'mm'
fi
if test ! -d 'h'
then
	echo shar: creating directory "'h'"
	mkdir 'h'
fi
if test ! -d 'lib'
then
	echo shar: creating directory "'lib'"
	mkdir 'lib'
fi
#	End of shell archive