44f4566e1a
more consistent. To quote the comment in etc/Makefile that describes how it's done: # This target builds the kernels specified by each port. A port may # specify the following kernels: # # KERNEL_SETS The list of kernels that will be # packaged into sets, named # kern-${kernel}.tgz. These kernels # are also placed in the binary/kernels # area of the release package as # netbsd-${kernel}.gz. # # EXTRA_KERNELS Additional kernels to place in the # binary/kernels area of the release # package as netbsd-${kernel}.gz, but # which are not placed into sets. This # allows a port to provide e.g. a netbootable # installation kernel containing a ramdisk. # # BUILD_KERNELS Additional kernels to build which are # not placed into sets nor into the # binary/kernels area of the release # package. These are typically kernels # that are built for inclusion only in # installation disk/CD-ROM/tape images. #
26 lines
822 B
Makefile
26 lines
822 B
Makefile
# $NetBSD: Makefile.inc,v 1.8 2001/11/29 22:45:59 thorpej Exp $
|
|
#
|
|
# etc.pmax/Makefile.inc -- pmax-specific etc Makefile targets
|
|
#
|
|
|
|
KERNEL_SETS= GENERIC
|
|
|
|
BUILD_KERNELS= INSTALL RAMDISK
|
|
|
|
# Add any extra release directories to be made
|
|
INSTALLATION_DIRS+=installation/diskimage installation/netboot
|
|
|
|
# location and name of the stripped down NFS install kernel
|
|
NFSCONF= INSTALL
|
|
NFSKERNNAME= nfsnetbsd
|
|
NFSKERNDIR= ${KERNOBJDIR}/${NFSCONF}
|
|
NFSKERN= ${NFSKERNDIR}/${NFSKERNNAME}
|
|
|
|
snap_md_post: ${DISKIMAGE} ${DISKIMAGE_TAR} ${INSTALLKERN}
|
|
${INSTALL} ${RENAME} ${PRESERVE} ${COPY} -o root -g wheel \
|
|
-m ${BINMODE} ${NFSKERN}.ecoff \
|
|
${RELEASEDIR}/binary/kernel/${NFSKERNNAME}
|
|
gzip -9 ${RELEASEDIR}/binary/kernel/${NFSKERNNAME}
|
|
cd ${.CURDIR}/../distrib/pmax && \
|
|
${MAKE} depend && ${MAKE} ${_J} && ${MAKE} install
|