ff6bcd05a5
GENERIC kernels. If ACPI is an issue on your hardware, 'boot -c' and 'disable acpi' should be a workaround. ACPI-enabled kernels works fine on pre-acpi hardware. for amd64: - add ACPI to INSTALL and GENERIC, remove the *_ACPI config files. - get rid of the bootfloppy-big.fs boot image, and got to a 3-floppy boot image for i386: - introduce INSTALL_LARGE which has ACPI and some devices with big firmware - move some devices from INSTALL to INSTALL_LARGE - Boot floppies still use INSTALL, and bootfloppy-big.fs is still there (for thoses who want to build el-torito floppy emulation boot CD) and use INSTALL. For both, drop the 'iso-image' code in etc/ to make the iso bootable, we'll use something else to build bootable CDs.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.49 2007/03/06 21:47:46 bouyer Exp $
|
|
#
|
|
# etc.i386/Makefile.inc -- i386-specific etc Makefile targets
|
|
#
|
|
|
|
KERNEL_SETS= GENERIC
|
|
KERNEL_SETS+= GENERIC_LAPTOP
|
|
KERNEL_SETS+= GENERIC_DIAGNOSTIC
|
|
KERNEL_SETS+= GENERIC.MP
|
|
KERNEL_SETS+= XEN2_DOM0
|
|
KERNEL_SETS+= XEN2_DOMU
|
|
KERNEL_SETS+= XEN3_DOM0
|
|
KERNEL_SETS+= XEN3_DOMU
|
|
# KERNEL_SETS+= GENERIC_TINY
|
|
# KERNEL_SETS+= GENERIC_PS2TINY
|
|
|
|
BUILD_KERNELS= ALL
|
|
BUILD_KERNELS+= INSTALL_LARGE
|
|
BUILD_KERNELS+= INSTALL
|
|
BUILD_KERNELS+= INSTALL_LAPTOP
|
|
BUILD_KERNELS+= INSTALL_XEN2_DOMU
|
|
BUILD_KERNELS+= INSTALL_XEN3_DOMU
|
|
# BUILD_KERNELS+= INSTALL_SMALL
|
|
# BUILD_KERNELS+= INSTALL_TINY
|
|
# BUILD_KERNELS+= INSTALL_PS2
|
|
|
|
INSTALLATION_DIRS+= installation/misc
|
|
INSTALLATION_DIRS+= installation/cdrom
|
|
INSTALLATION_DIRS+= installation/floppy
|
|
|
|
# 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}/${MACHINE}/installation/cdrom '*.iso'
|
|
${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/installation/floppy '*.fs'
|
|
${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/installation/misc '*.*'
|