1 # $DragonFly: src/nrelease/Makefile,v 1.11 2004/07/11 18:57:50 cpressey Exp $
5 ISOFILE ?= ${ISODIR}/dfly.iso
6 ISOROOT = ${ISODIR}/root
7 OBJSYS= ${.OBJDIR}/../sys
10 # Specify which packages are required on the ISO, and let the user
11 # specify additional packages to include. During the `pkgaddiso'
12 # target, the packages are obtained from PACKAGES_LOC.
14 REQ_PACKAGES= cdrtools-2.0.3_3 cvsup-without-gui-16.1h
15 PACKAGES?= ${REQ_PACKAGES} ${EXTRA_PACKAGES}
16 PACKAGES_LOC?= /usr/ports/packages/All
18 # Specify which root skeletons are required, and let the user include
19 # their own. They are copied into ISODIR during the `pkgcustomizeiso'
20 # target; each overwrites the last.
22 REQ_ROOTSKELS= ${.CURDIR}/root
23 ROOTSKELS?= ${REQ_ROOTSKELS} ${EXTRA_ROOTSKELS}
25 # note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
26 # the additional '/nrelease' manually, as a safety measure.
30 WORLD_CCVER ?= ${CCVER}
31 KERNEL_CCVER ?= ${CCVER}
33 #########################################################################
35 #########################################################################
37 release: check clean buildworld1 buildkernel1 \
38 buildiso customizeiso pkgaddiso mkiso
40 quickrel: check clean buildworld2 buildkernel2 \
41 buildiso customizeiso pkgaddiso mkiso
43 realquickrel: check clean \
44 buildiso customizeiso pkgaddiso mkiso
46 #########################################################################
47 # ISO TARGETS WITH INSTALLER #
48 #########################################################################
50 INSTALLER_PKGS= dfuibe_installer dfuife_curses libdfui \
51 thttpd-notimeout dfuife_cgi
52 INSTALLER_SKELS= installer
54 INSTALLER_ENV= EXTRA_PACKAGES="${INSTALLER_PKGS}" \
55 EXTRA_ROOTSKELS="${INSTALLER_SKELS}"
58 @${INSTALLER_ENV} ${MAKE} check
61 ${INSTALLER_ENV} ${MAKE} release
64 ${INSTALLER_ENV} ${MAKE} quickrel
66 installer_realquickrel:
67 ${INSTALLER_ENV} ${MAKE} realquickrel
69 #########################################################################
71 #########################################################################
74 @if [ ! -f /usr/local/bin/mkisofs ]; then \
75 echo "You need to install the mkisofs port for this target"; \
78 .for PKG in ${PACKAGES}
79 @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
80 echo "Unable to find ${PACKAGES_LOC}/${PKG}.tgz. This is"; \
81 echo "typically accomplished by cd'ing into the appropriate"; \
82 echo "port and typing 'make package'"; \
84 echo "If you are trying to build the installer, the"; \
85 echo "required packages can be obtained from:"; \
86 echo "http://www.bsdinstaller.org/packages/DragonFly/"; \
90 @echo "check: all preqs found"
93 ( cd ${.CURDIR}/..; make buildworld CCVER=${WORLD_CCVER} )
96 ( cd ${.CURDIR}/..; make -DNOTOOLS -DNOCLEAN buildworld CCVER=${WORLD_CCVER} )
99 ( cd ${.CURDIR}/..; make buildkernel KERNCONF=${KERNCONF} CCVER=${KERNEL_CCVER} )
102 ( cd ${.CURDIR}/..; make -DNOCLEAN buildkernel KERNCONF=${KERNCONF} CCVER=${KERNEL_CCVER} )
104 # note that we do not want to mess with any /usr/obj directories not related
105 # to buildworld, buildkernel, or nrelease, so we must supply the proper
106 # MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
107 # buildkernel mechanism.
110 if [ ! -d ${ISOROOT} ]; then mkdir -p ${ISOROOT}; fi
111 if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
112 ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} installworld )
113 ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease make DESTDIR=${ISOROOT} distribution )
114 ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} \
115 installkernel KERNCONF=${KERNCONF} )
116 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
117 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
118 dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
121 .for ROOTSKEL in ${ROOTSKELS}
122 cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
124 rm -rf `find ${ISOROOT} -type d -name CVS -print`
125 pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
128 rm -f ${ISOROOT}/tmp/chrootscript
129 echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
130 .for PKG in ${PACKAGES}
131 echo "pkg_delete -f ${PKG}" >> ${ISOROOT}/tmp/chrootscript
133 chmod a+x ${ISOROOT}/tmp/chrootscript
134 chroot ${ISOROOT}/ /tmp/chrootscript || exit 0
135 rm ${ISOROOT}/tmp/chrootscript
138 rm -f ${ISOROOT}/tmp/chrootscript
139 echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
140 .for PKG in ${PACKAGES}
141 cp ${PACKAGES_LOC}/${PKG}.tgz ${ISOROOT}/tmp/${PKG}.tgz
142 echo "echo 'Installing package ${PKG}...'" >> ${ISOROOT}/tmp/chrootscript
143 echo "pkg_add /tmp/${PKG}.tgz" >> ${ISOROOT}/tmp/chrootscript
145 chmod a+x ${ISOROOT}/tmp/chrootscript
146 chroot ${ISOROOT}/ /tmp/chrootscript
147 rm ${ISOROOT}/tmp/chrootscript
148 .for PKG in ${PACKAGES}
149 rm -f ${ISOROOT}/tmp/${PKG}.tgz
153 ( cd ${ISOROOT}; mkisofs -b boot/cdboot -no-emul-boot \
154 -R -J -V DragonFly -o ${ISOFILE} . )
157 if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
158 if [ -d ${ISOROOT} ]; then rm -rf ${ISOROOT}/*; fi
159 if [ -d ${NRLOBJDIR}/nrelease ]; then rm -rf ${NRLOBJDIR}/nrelease; fi
162 rm -rf ${OBJSYS}/${KERNCONF}
164 .include <bsd.prog.mk>