Home | History | Annotate | Line # | Download | only in bootfloppy-big
Makefile revision 1.15
      1 #	$NetBSD: Makefile,v 1.15 2002/03/05 20:29:33 thorpej Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 TOP=	${.CURDIR}/..
      6 
      7 .include "${TOP}/Makefile.inc"
      8 
      9 IMAGE=	boot-big.fs
     10 
     11 KERNDIR!=	cd ${TOP}/kernel-ramdisk && ${PRINTOBJDIR}
     12 KERN=		${KERNDIR}/netbsd.INSTALL.gz
     13 
     14 # This Makefile builds a boot image on a 2.88M-sized image.
     15 #
     16 # Since NetBSD currently can't write 2.88M diskettes, it's only
     17 # use is as a boot image for El Torito bootable CD-ROM images.
     18 #
     19 # To prepare a CD, do the following steps:
     20 # 1) create a release(7) tree called NetBSD-1.3I
     21 # 2) create NetBSD-1.3I/boot.i386/ and place boot.fs in that directory
     22 # 3) do ``mkisofs -A "NetBSD ${version}" -b boot.i386/boot.fs -f \
     23 #	-o i386-cd.img -r -T NetBSD-1.3I''
     24 #    (you may omit '-f' if you're not using symlinks in the release tree)
     25 # This should place the image in i386-cd.img, which can hopefully
     26 # be used to burn a CD.
     27 
     28 DISKSIZE=	5760
     29 METAFILE!=	printf "USTAR.volsize.%o" ${DISKSIZE}
     30 BLOCK8K=	359
     31 PAD=yes
     32 
     33 .include "${TOP}/common/Makefile.bootfloppy"
     34