Home | History | Annotate | Line # | Download | only in instkernel
Makefile revision 1.7
      1  1.7    pavel #	$NetBSD: Makefile,v 1.7 2007/07/24 10:20:15 pavel Exp $
      2  1.1  hubertf 
      3  1.1  hubertf .include <bsd.own.mk>
      4  1.1  hubertf .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5  1.1  hubertf 
      6  1.1  hubertf #	create ${RAMDISK_*} variables
      7  1.1  hubertf #
      8  1.5      dsl RAMDISKS=	RAMDISK_B	ramdisk-big
      9  1.5      dsl # RAMDISKS+=	RAMDISK_S	ramdisk-small
     10  1.5      dsl # RAMDISKS+=	RAMDISK_T	ramdisk-tiny
     11  1.5      dsl # RAMDISKS+=	RESCUE_T	ramdisk-rescuetiny
     12  1.1  hubertf 
     13  1.1  hubertf .for V F in ${RAMDISKS}
     14  1.1  hubertf ${V}DIR!=	cd ${.CURDIR}/../ramdisks/${F} && ${PRINTOBJDIR}
     15  1.1  hubertf ${V}=		${${V}DIR}/${F}.fs
     16  1.1  hubertf .endfor
     17  1.1  hubertf 
     18  1.7    pavel # If you change the list of distributed install kernels, don't forget
     19  1.7    pavel # to update the release documentation in distrib/notes/common/contents
     20  1.6   bouyer MDSETTARGETS=	INSTALL_LARGE		${RAMDISK_B}	-
     21  1.6   bouyer MDSETTARGETS+=	INSTALL			${RAMDISK_B}	-
     22  1.5      dsl MDSETTARGETS+=	INSTALL_LAPTOP		${RAMDISK_B}	-
     23  1.5      dsl MDSETTARGETS+=	INSTALL_XEN2_DOMU	${RAMDISK_B}	-
     24  1.5      dsl MDSETTARGETS+=	INSTALL_XEN3_DOMU	${RAMDISK_B}	-
     25  1.5      dsl # MDSETTARGETS+=	INSTALL_SMALL		${RAMDISK_S}	-
     26  1.5      dsl # MDSETTARGETS+=	INSTALL_TINY		${RAMDISK_T}	-
     27  1.5      dsl # MDSETTARGETS+=	INSTALL_PS2		${RAMDISK_S}	-
     28  1.5      dsl # MDSETTARGETS+=	INSTALL_TINY		${RESCUE_T}	netbsd-RESCUE_TINY
     29  1.1  hubertf 
     30  1.1  hubertf MDSET_RELEASEDIR=	binary/kernel
     31  1.3   bouyer # do not strip Xen kernels, there's no space constraints here.
     32  1.3   bouyer MDSET_NOSTRIP.netbsd-INSTALL_XEN2_DOMU=
     33  1.3   bouyer MDSET_NOSTRIP.netbsd-INSTALL_XEN3_DOMU=
     34  1.4    pavel # do not strip any other kernels, it is done by Makefile.tarfloppy before
     35  1.4    pavel # they are written to a floppy.
     36  1.4    pavel MDSET_NOSTRIP=
     37  1.3   bouyer MDSET_NOSYMBOLS.netbsd-INSTALL_XEN2_DOMU=
     38  1.3   bouyer MDSET_NOSYMBOLS.netbsd-INSTALL_XEN3_DOMU=
     39  1.1  hubertf 
     40  1.1  hubertf .include "${DISTRIBDIR}/common/Makefile.mdset"
     41  1.1  hubertf 
     42  1.1  hubertf .include <bsd.prog.mk>
     43