Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cornell!uw-beaver!blake!ndsuvax!ncoverby From: ncoverby@ndsuvax.UUCP (Glen Overby) Newsgroups: comp.os.minix Subject: New Bootstrapper Part 0 of 3 Keywords: hard disk, bootstrapper Message-ID: <2657@ndsuvax.UUCP> Date: 10 May 89 22:14:41 GMT Reply-To: ncoverby@ndsuvax.UUCP (Glen Overby) Organization: North Dakota State University, Fargo ND USA Lines: 52 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 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