blob: c18a9158169f57b91ccd222b241d23a815345abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: bootkern.mk,v 1.1.1.1 2004/02/26 03:58:56 xtraeme Exp $
# $Id: bootkern.mk,v 1.1.1.1 2004/02/26 03:58:56 xtraeme Exp $
# This Makefile builds a boot image on a 2.88M-sized image.
#
# Since NetBSD currently can't write 2.88M diskettes, it's only
# use is as a boot image for El Torito bootable CD-ROM images.
#
# To prepare a CD, do the following steps:
# 1) create a release(7) tree called NetBSD-1.3I
# 2) create NetBSD-1.3I/boot.i386/ and place boot.fs in that directory
# 3) do ``mkisofs -A "NetBSD ${version}" -b boot.i386/boot.fs -f \
# -o i386-cd.img -r -T NetBSD-1.3I''
# (you may omit '-f' if you're not using symlinks in the release tree)
# This should place the image in i386-cd.img, which can hopefully
# be used to burn a CD.
FLOPPYBASE= cdlive-boot
FLOPPYPAD= 1
FLOPPYSIZE= 5760
FLOPPYKERNEL= netbsd
FLOPPYKERNDIR= ${.CURDIR}/@KERNEL_NAME@
.include "${.CURDIR}/Makefile.bootfloppy"
|