install the netbsd.INSTALL kernel into the release area as well.

This commit is contained in:
mrg 2001-08-23 16:59:33 +00:00
parent 75146946d7
commit f32a062ce6
1 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2001/08/23 15:50:09 mrg Exp $
# $NetBSD: Makefile,v 1.2 2001/08/23 16:59:33 mrg Exp $
#
# instfs.tgz is the filesystem image for disk 2 of the floppy based
# installation method.
@ -20,9 +20,11 @@ VND_CDEV= /dev/${VND}c
VND_CRDEV= /dev/r${VND}c
INSTFS?= instfs.tgz
MINIROOT_IMAGE!=cd ${MINIROOT}; \
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/miniroot.fs\n" | \
MINIROOT_DIR!=cd ${MINIROOT}; \
printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}\n" | \
${MAKE} -s -f-
MINIROOT_IMAGE= ${MINIROOT_DIR}/miniroot.fs
MINIROOT_KERNEL=${MINIROOT_DIR}/netbsd.INSTALL
all: ${INSTFS}
@ -49,6 +51,7 @@ release:
.else
release: ${INSTFS}
cp ${INSTFS} $(RELEASEDIR)/installation/misc
gzip -9 -c ${MINIROOT_KERNEL} > $(RELEASEDIR)/binary/kernel/netbsd.INSTALL.gz
.endif # RELEASEDIR check
.include <bsd.obj.mk>