Home | History | Annotate | Line # | Download | only in etc.ofppc
Makefile.inc revision 1.9
      1  1.9  garbled #	$NetBSD: Makefile.inc,v 1.9 2008/05/01 01:58:10 garbled Exp $
      2  1.3    lukem #
      3  1.3    lukem #	etc.ofppc/Makefile.inc -- ofppc-specific etc Makefile targets
      4  1.3    lukem #
      5  1.1      chs 
      6  1.5    pavel # If you change the list of distributed kernels, don't forget
      7  1.5    pavel # to update the release documentation in distrib/notes/common/contents
      8  1.5    pavel 
      9  1.8  garbled KERNEL_SETS=		GENERIC
     10  1.1      chs 
     11  1.8  garbled BUILD_KERNELS+=		INSTALL
     12  1.9  garbled 
     13  1.9  garbled MD_INSTALLATION_DIRS=	installation/netboot
     14  1.9  garbled 
     15  1.9  garbled INSTALLATION_DIRS+=	${MD_INSTALLATION_DIRS}
     16  1.9  garbled 
     17  1.9  garbled INSTALLATION_SYMLINKS=	\
     18  1.9  garbled 	netboot/netbsd-INSTALL.gz	../../binary/kernel/netbsd-INSTALL.gz \
     19  1.9  garbled 	netboot/netbsd-GENERIC.gz	../../binary/kernel/netbsd-GENERIC.gz
     20  1.9  garbled 
     21  1.9  garbled snap_md_post:
     22  1.9  garbled 	# install ofwboot in netboot directory
     23  1.9  garbled 	${HOST_INSTALL_FILE} -m ${NONBINMODE} ${DESTDIR}/usr/mdec/ofwboot \
     24  1.9  garbled 		${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/netboot
     25  1.9  garbled 
     26  1.9  garbled 	# install links to boot and installation utilities for various media
     27  1.9  garbled .for linkdst linksrc in ${INSTALLATION_SYMLINKS}
     28  1.9  garbled 	rm -f ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/${linkdst}
     29  1.9  garbled 	ln -s ${linksrc} ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/${linkdst}
     30  1.9  garbled .endfor
     31  1.9  garbled 
     32  1.9  garbled 	# compute checksums
     33  1.9  garbled .for dir in ${MD_INSTALLATION_DIRS}
     34  1.9  garbled 	${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir} '*'
     35  1.9  garbled .endfor
     36