NetBSD/sys/arch/next68k/stand/boot
2009-03-18 17:06:41 +00:00
..
boot.c
conf.c
devopen.c
dmareg.h
en.c bcopy -> memcpy 2009-03-18 17:06:41 +00:00
enreg.h
installboot.sh
machdep.c Remove __attribute__((__noreturn__)) from things already marked __dead 2007-12-24 15:46:45 +00:00
Makefile - WARNSfy 2009-01-12 07:47:47 +00:00
newvers.sh Convert TNF licenses to new 2 clause variant 2008-04-30 13:10:46 +00:00
README
rtc.c Replace time_t values in libsa sources with the following two types 2009-01-12 11:32:43 +00:00
scsi.c Convert from using bcopy() to memcpy(), so that this builds again. 2008-03-30 16:28:08 +00:00
scsireg.h Follow Izumi Tsutsui's advice, and use uint8_t* rather than char*. 2007-03-05 18:06:09 +00:00
scsivar.h
sd.c bzero -> memset 2009-03-18 16:00:08 +00:00
srt0.s
version

$NetBSD: README,v 1.1.1.1 1998/06/09 07:53:06 dbj Exp $

NeXT standalone bootblocks.
Rolf Grossmann, Dec 1994

Started work based on files from hp300/stand. boot.c was from post-1.0 
sparc/stand/boot.c, modified to work for the needs of the NeXT PROM,
i.e. it wants to call the kernel, so the bootblock has to return the
entry point.

The code does not try multiple names for te kernel, as I've seen it in
some other architectures' boot code. (The copied code simply didn't do
that ;)) It also doesn't prompt if the argument to boot ends with a
questionmark '?', like the NeXT bootblock does. Do we need this? (Why
should the bootblock as again when you can specify everything on the
boot command line?)

Most files have nothing to do with their original version anymore. The whole
code is a mixture of my own ideas, various other netbsd code I've looked at
(like the sparc scsi code, the independent scsi code, and the needs of the
standalone library).

In contrast to NeXT's bootblocks, mine keep the PROM's idea of what the
boot parameters are, i.e. logical disk number (the number the disk would
get as sd*), the lun and the partition.

TODO
 Make some additional improvements