Home | History | Annotate | Line # | Download | only in bootfloppy-big
Makefile revision 1.17
      1 #	$NetBSD: Makefile,v 1.17 2002/04/16 05:23:37 lukem Exp $
      2 
      3 # This Makefile builds a boot image on a 2.88M-sized image.
      4 #
      5 # Since NetBSD currently can't write 2.88M diskettes, it's only
      6 # use is as a boot image for El Torito bootable CD-ROM images.
      7 #
      8 # To prepare a CD, do the following steps:
      9 # 1) create a release(7) tree called NetBSD-1.3I
     10 # 2) create NetBSD-1.3I/boot.i386/ and place boot.fs in that directory
     11 # 3) do ``mkisofs -A "NetBSD ${version}" -b boot.i386/boot.fs -f \
     12 #	-o i386-cd.img -r -T NetBSD-1.3I''
     13 #    (you may omit '-f' if you're not using symlinks in the release tree)
     14 # This should place the image in i386-cd.img, which can hopefully
     15 # be used to burn a CD.
     16 
     17 FLOPPYBASE=	boot-big
     18 FLOPPYSIZE=	5760
     19 FLOPPYPAD=	1
     20 FLOPPYKERNDIR=	kernel-ramdisk
     21 FLOPPYKERNEL=	netbsd.INSTALL.gz
     22 FLOPPYMETA!=	printf "USTAR.volsize.%o" ${FLOPPYSIZE}
     23 
     24 .include "${.CURDIR}/../common/Makefile.bootfloppy"
     25