NetBSD/sys/arch/prep/stand
lukem 171d653219 Overhaul how `build.sh tools' are used:
*	Rename "config.h" to "nbtool_config.h" and
	HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H.
	This makes in more obvious in the source when we're using
	tools/compat/config.h versus "standard autoconf" config.h

    *	Consistently move the inclusion of nbtool_config.h to before
    	<sys/cdefs.h> so that the former can provide __RCSID() (et al),
    	and there's no need to protect those macros any more.

These changes should make it easier to "tool-ify" a program by adding:
	#if HAVE_NBTOOL_CONFIG_H
	#include "nbtool_config.h"
	#endif
to the top of the source files (for the general case).
2003-10-27 00:12:41 +00:00
..
boot Use ${HOST_SH} instead of `sh'. 2003-10-26 07:25:33 +00:00
boot_com0
common
installboot
mkbootimage Overhaul how `build.sh tools' are used: 2003-10-27 00:12:41 +00:00
Makefile
Makefile.inc
README

README

$NetBSD: README,v 1.1 2000/02/29 15:21:52 nonaka Exp $

Contents.
	boot        NetBSD/prep boot-loader
	boot_com0   NetBSD/prep boot-loader(serial console) 
	mkbootimage Make bootable floppy image.


How to make bootable floppy disk image.

	 $ cd /sys/arch/prep/stand
	 $ make
	    For cross compile environment:
	        $ for i in common boot_com0 boot; do (cd $i; ppc-make); done
	        $ (cd mkbootimage; make)
	 $ mkbootimage/mkbootimage boot/boot /tmp/boot.fs
	    To make kernel attached bootable floppy image:
	        $ gzip -c ../compile/YOUR_KERNEL/netbsd > /tmp/netbsd.gz
	        $ mkbootimage/mkbootimage boot/boot /tmp/boot.fs /tmp/netbsd.gz