Makefile revision 1.17
11.17Slukem# $NetBSD: Makefile,v 1.17 2002/04/16 05:23:37 lukem Exp $ 21.1She 31.1She# This Makefile builds a boot image on a 2.88M-sized image. 41.1She# 51.2She# Since NetBSD currently can't write 2.88M diskettes, it's only 61.1She# use is as a boot image for El Torito bootable CD-ROM images. 71.1She# 81.1She# To prepare a CD, do the following steps: 91.1She# 1) create a release(7) tree called NetBSD-1.3I 101.1She# 2) create NetBSD-1.3I/boot.i386/ and place boot.fs in that directory 111.1She# 3) do ``mkisofs -A "NetBSD ${version}" -b boot.i386/boot.fs -f \ 121.1She# -o i386-cd.img -r -T NetBSD-1.3I'' 131.1She# (you may omit '-f' if you're not using symlinks in the release tree) 141.1She# This should place the image in i386-cd.img, which can hopefully 151.1She# be used to burn a CD. 161.1She 171.17SlukemFLOPPYBASE= boot-big 181.17SlukemFLOPPYSIZE= 5760 191.17SlukemFLOPPYPAD= 1 201.17SlukemFLOPPYKERNDIR= kernel-ramdisk 211.17SlukemFLOPPYKERNEL= netbsd.INSTALL.gz 221.17SlukemFLOPPYMETA!= printf "USTAR.volsize.%o" ${FLOPPYSIZE} 231.1She 241.16Slukem.include "${.CURDIR}/../common/Makefile.bootfloppy" 25