NetBSD/sys/arch/sun3x/stand
gwr 0faac5faf2 Back-out the CWD hack... 1997-04-01 23:11:28 +00:00
..
bootxx Import the sun3 version of this on the "vendor branch". 1997-03-13 16:27:27 +00:00
installboot Import the sun3 version of this on the "vendor branch". 1997-03-13 16:27:27 +00:00
libsa Use "if_ether.h" (from sys/lib/libsa). 1997-03-24 17:32:21 +00:00
netboot Sync with sun3 (no longer need -DSUN_BOOTPARAMS) 1997-03-24 17:55:40 +00:00
tapeboot Import the sun3 version of this on the "vendor branch". 1997-03-13 16:27:27 +00:00
ufsboot Import the sun3 version of this on the "vendor branch". 1997-03-13 16:27:27 +00:00
Makefile Import the sun3 version of this on the "vendor branch". 1997-03-13 16:27:27 +00:00
Makefile.inc Back-out the CWD hack... 1997-04-01 23:11:28 +00:00
README Update the 'status' paragraph to reflect the current working programs. 1997-03-15 03:41:01 +00:00

README

/*	$NetBSD: README,v 1.2 1997/03/15 03:41:01 jeremy Exp $ */

The sun bootblocks are split into two parts: a small 1st-level program that
gets written right after the superblock in a partition (and is hence limited
in size to SBSIZE - DEV_BSIZE bytes), and a 2nd-level program that resides
in the filesystem proper.

The 1st-level program is loaded into memory by the PROM. It loads the second
stage program from a set of filesystem block numbers that are hard-coded
into it by the `installboot' program. The prototype code for the 1st-level
bootblocks are in `bootxx'.

The 2nd-level program (`ufsboot') is normally installed in the root FS
as `/ufsboot'. It uses the device drivers in the PROM and the stand-alone
filesystem code in `libsa.a' to locate and load the kernel.

Use the following command to install the 1st-level bootblocks in the
root filesystem (on `sd0a') using the file `/boot' as the second level
boot program:

	mount /dev/sd0a /mnt
	cd /usr/mdec
	cp -p ufsboot /mnt/ufsboot
	sync ; sleep 1 ; sync
	./installboot -v /mnt/ufsboot bootxx /dev/rsd0a

The above only works with securelevel <= 0 (see init.8 manual).

Status:

netboot works. (3/13/1997)
ufsboot works. (3/13/1997)
tapeboot has not been tested. (3/13/1997)

bootxx, installboot are tested and working.  It would be nice if
installboot would find the inumber for the 2nd stage boot program
without having the filesystem mounted so this command can work
with securelevel==1 (the default).  Doing this requies adding
code to read and do a directory lookup in the root...