NetBSD/sys/arch/prep/stand
2003-10-08 01:40:22 +00:00
..
boot Define LIB{CRT0,C,CRTBEGIN,CRTEND} as nothing, we don't need to link 2003-10-08 01:40:22 +00:00
boot_com0
common Add -ffreestanding 2003-09-30 18:58:39 +00:00
installboot Include <string.h> for memset and memcmp prototypes. 2003-10-06 08:44:39 +00:00
mkbootimage
Makefile
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