NetBSD/sys/arch/prep/stand
nonaka d382cc6c5a Use memset() for "Clear all of BSS".
If (edata-address & 3) != (end-address & 3), my own code cause infinity loop.
Fixed it.
2004-01-05 15:31:03 +00:00
..
boot Use memset() for "Clear all of BSS". 2004-01-05 15:31:03 +00:00
boot_com0
common reduce program size. 2004-01-05 15:17:54 +00:00
installboot netbsd.org -> NetBSD.org 2003-12-04 13:05:15 +00:00
mkbootimage netbsd.org -> NetBSD.org 2003-12-04 13:05:15 +00:00
Makefile Add a .WAIT after common so libs get built before they're needed 2003-12-12 23:00:09 +00:00
Makefile.inc
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