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