da694a1ffc
- Make MULTIPROCESSOR mandatory on i386. Installation changes: - Update installation section of release notes to match reality. - Rename INSTALL to INSTALL_FLOPPY, retire INSTALL_LARGE. - Build INSTALL kernel from GENERIC, like on amd64. - Update boot menu to allow disabling ACPI and/or SMP. - Remove GENERIC.NOACPI from the installed kernel list. - TODO: install default boot.cfg in etc.tgz. - TODO: possibly enable PCI fixup stuff at runtime if ACPI is disabled. Build changes: - No longer build ALL, it's for verification, is slow to build and the build process is already crippled by the number of kernels built. - No longer build GENERIC.NOACPI.
22 lines
809 B
Makefile
22 lines
809 B
Makefile
# $NetBSD: Makefile,v 1.25 2008/04/30 15:29:11 ad Exp $
|
|
|
|
# This Makefile builds a boot image on a 2.88M-sized image.
|
|
#
|
|
# Since NetBSD currently can't write 2.88M diskettes, its 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= boot-big
|
|
FLOPPYSIZE= 7200
|
|
FLOPPYKERNEL= netbsd-INSTALL_FLOPPY.gz
|
|
|
|
.include "${.CURDIR}/../common/Makefile.bootfloppy"
|