d67b6a35e5
Reasons being: - INSTALL is GENERIC with an embedded ramdisk, and as such, can benefit from features included within. - INSTALL_FLOPPY has its own config(5) file, and is tailored for "small" floppy images; it misses features/drivers that could be needed to boot in a decent environment for recent x86 machines (like ACPI) - makes it closer to floppies distrib available for amd64 While here, comment out INSTALL_FLOPPY and bootfloppy-big image build. NetBSD does not use the 3.6MiB image for El Torito cdroms anymore. Remove the FLOPPYMAX limit; i386 needs 4 floppies now. Modify boot.cfg and release/contents to reflect reality. See http://mail-index.netbsd.org/port-i386/2011/02/08/msg002307.html No comments, no objections.
40 lines
1.4 KiB
Makefile
40 lines
1.4 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.65 2011/02/10 00:43:20 jym Exp $
|
|
#
|
|
# etc.i386/Makefile.inc -- i386-specific etc Makefile targets
|
|
#
|
|
|
|
# If you change the list of distributed kernels, don't forget
|
|
# to update the release documentation in distrib/notes/common/contents
|
|
|
|
KERNEL_SETS= GENERIC
|
|
KERNEL_SETS+= MONOLITHIC
|
|
KERNEL_SETS+= XEN3_DOM0
|
|
KERNEL_SETS+= XEN3_DOMU
|
|
KERNEL_SETS+= XEN3PAE_DOM0
|
|
KERNEL_SETS+= XEN3PAE_DOMU
|
|
# KERNEL_SETS+= GENERIC_TINY
|
|
# KERNEL_SETS+= GENERIC_PS2TINY
|
|
|
|
BUILD_KERNELS+= INSTALL
|
|
BUILD_KERNELS+= INSTALL_XEN3_DOMU
|
|
BUILD_KERNELS+= INSTALL_XEN3PAE_DOMU
|
|
# BUILD_KERNELS+= INSTALL_FLOPPY
|
|
# BUILD_KERNELS+= INSTALL_SMALL
|
|
# BUILD_KERNELS+= INSTALL_TINY
|
|
# BUILD_KERNELS+= INSTALL_PS2
|
|
|
|
INSTALLATION_DIRS+= installation/misc
|
|
INSTALLATION_DIRS+= installation/cdrom
|
|
INSTALLATION_DIRS+= installation/floppy
|
|
INSTALLATION_DIRS+= installation/miniroot
|
|
|
|
# i386 specific distrib stuff
|
|
snap_md_post:
|
|
cd ${KERNSRCDIR}/arch/i386/stand/dosboot && ${MAKE} release
|
|
cd ${KERNSRCDIR}/arch/i386/stand/pxeboot && ${MAKE} release
|
|
cd ${KERNSRCDIR}/arch/i386/stand/misc && ${MAKE} release
|
|
${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom '*.iso'
|
|
${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/floppy '*.fs'
|
|
${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/miniroot '*.*'
|
|
${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/misc '*.*'
|