xref: /dragonfly/nrelease/Makefile (revision 10cbe914)
1#########################################################################
2#				ENHANCEMENTS	 			#
3#########################################################################
4
5# New method e.g. 'make gui release'.  A series of enhancement
6# targes may be specified which set make variables which enhance
7# the build in various ways.
8#
9# img is now the default (produces both the .iso and .img)
10#
11gui installer img nopkgs:
12
13#########################################################################
14#				 SETUP		 			#
15#########################################################################
16
17ISODIR?=	/usr/release
18ISOROOT?=	${ISODIR}/root
19OBJSYS=		${.OBJDIR}/../sys
20GITHOST?=	git.dragonflybsd.org
21
22MAKE_JOBS?=	$$(sysctl -n hw.ncpu)
23
24# temporary until everybody has converted to x86_64
25.if ${MACHINE_ARCH} == "amd64"
26MACHINE_ARCH=	x86_64
27.makeenv MACHINE_ARCH
28.endif
29
30# XXX makeshift fix to build the right kernel for the (target) architecture
31# We should configure this in the platform files somehow
32.if ${MACHINE_ARCH} == "i386"
33KERNCONF ?= GENERIC GENERIC_SMP
34.else
35KERNCONF ?= X86_64_GENERIC X86_64_GENERIC_SMP
36.endif
37
38PKGSRC_PREFIX?=		/usr/pkg
39PKGBIN_PKG_ADD?=	${PKGSRC_PREFIX}/sbin/pkg_add
40PKGBIN_PKG_DELETE?=	${PKGSRC_PREFIX}/sbin/pkg_delete
41PKGBIN_PKG_ADMIN?=	${PKGSRC_PREFIX}/sbin/pkg_admin
42PKGBIN_MKISOFS?=	${PKGSRC_PREFIX}/bin/mkisofs
43PKGSRC_PKG_PATH?=	${ISODIR}/packages
44
45# We use env -i in the chroot, so that environment variables won't
46# disturb any (pkgsrc) build.  This has happened for TARGET_ARCH,
47# which is used by gmake in completely different context.
48#
49CHROOT_CMD?=		env -i CCVER=${CCVER:Q} /usr/sbin/chroot ${ISOROOT} sh -c
50
51# User may specify extra packages in addition to the defaults
52#
53PKGSRC_EXTRA_PACKAGES?=
54
55# Pkgsrc packages to be built and installed on the release ISO
56#
57PKGSRC_PACKAGES?=	pkgtools/pkg_leaves \
58			pkgtools/pkg_tarup \
59			pkgtools/pkgin \
60			devel/scmgit \
61			net/bind96 \
62			net/isc-dhcp4 \
63			net/isc-dhcpd4 \
64			sysutils/cdrtools \
65			net/csup \
66			${PKGSRC_EXTRA_PACKAGES}
67
68# pkgsrc options to use when building packages
69#
70PKGSRC_OPTIONS+=	MAKE_JOBS=${MAKE_JOBS}
71PKGSRC_OPTIONS+=	WRKOBJDIR=/usr/pkgobj
72PKGSRC_OPTIONS+=	PKG_DEFAULT_OPTIONS='dri inet6'
73.if !make(gui)
74PKGSRC_OPTIONS+=	PKG_OPTIONS.scmgit=-scmgit-gui
75.endif
76
77# Even though buildiso wipes the packages, our check target has to run
78# first and old packages (listed as they appear in pkg_info) must be
79# cleaned out in order for the pkg_add -n test we use in the check target
80# to operate properly.
81#
82OLD_PKGSRC_PACKAGES?=	cdrtools-2.01.01.27nb1 \
83			cdrecord-2.00.3nb2 \
84			bootstrap-kit-20070205 \
85			dfuibe_installer-1.1.6 \
86			gettext-lib-0.14.5 \
87			dfuibe_installer-1.1.7nb1 \
88			dfuife_curses-1.5 \
89			gettext-lib-0.14.6 \
90			gettext-tools-0.14.6nb1 \
91			libaura-3.1 \
92			libdfui-4.2 \
93			libinstaller-5.1 \
94			bootstrap-kit-20080211 \
95			cdrtools-ossdvd-2.01.1.36nb2 \
96			isc-dhcp-base-4.0.0 \
97			isc-dhcp-server-4.0.0
98
99# Specify which root skeletons are required, and let the user include
100# their own.  They are copied into ISODIR during the `customizeiso'
101# target; each overwrites the last.
102#
103REQ_ROOTSKELS=	${.CURDIR}/root
104ROOTSKELS?=	${REQ_ROOTSKELS}
105
106# LIST OF PACKAGES NOT INCLUDED DUE TO BUILD ISSUES:
107#	chat/pidgin		textproc/enchant dependency is broken
108#	x11/rxvt-unicode	broken configure
109#	net/nmap		tries to access openssl/md2.h which does not
110#				exist.
111#	sysutils/idesk		dying on link __sync_fetch_and_add_4
112#
113.if make(gui)
114ISOFILE?=		${ISODIR}/dfly-gui.iso
115IMGFILE?=		${ISODIR}/dfly-gui.img
116
117.if !make(nopkgs)
118PKGSRC_PACKAGES+=	meta-pkgs/modular-xorg-apps \
119			meta-pkgs/modular-xorg-drivers \
120			meta-pkgs/modular-xorg-fonts \
121			meta-pkgs/modular-xorg-libs \
122			wm/fluxbox \
123			wm/fvwm \
124			www/firefox \
125			print/xpdf \
126			shells/zsh \
127			editors/emacs \
128			editors/vim \
129			chat/irssi \
130			chat/xchat \
131			x11/modular-xorg-server \
132			x11/eterm \
133			lang/perl5 \
134			editors/nano \
135			shells/bash \
136			devel/exctags \
137			archivers/zip \
138			security/sudo \
139			www/links-gui \
140			net/wget \
141			fonts/terminus-font \
142			net/rsync \
143			time/asclock \
144			misc/screen
145.endif
146
147ROOTSKELS+=		${.CURDIR}/gui
148.endif
149
150ISOFILE ?= ${ISODIR}/dfly.iso
151IMGFILE ?= ${ISODIR}/dfly.img
152
153IMGMNT ?= ${ISODIR}/mnt
154
155# USB umass now probes starting at da8, so the usb stick is
156# probably sitting on da8.
157#
158IMGUSBDEV ?= da8
159
160# note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
161# the additional '/nrelease' manually, as a safety measure.
162#
163NRLOBJDIR?= /usr/obj
164
165#########################################################################
166#				BASE ISO TARGETS 			#
167#########################################################################
168
169release:	check clean buildworld1 buildkernel1 \
170		buildiso srcs customizeiso mkiso mkimg
171
172quickrel:	check clean buildworld2 buildkernel2 \
173		buildiso srcs customizeiso mkiso mkimg
174
175realquickrel:	check clean \
176		buildiso srcs customizeiso mkiso mkimg
177
178restartpkgs:	check customizeiso mkiso mkimg
179
180quick:		quickrel
181
182realquick:	realquickrel
183
184
185#########################################################################
186#			   CORE SUPPORT TARGETS 			#
187#########################################################################
188
189check:
190.if !exists(${PKGBIN_PKG_ADMIN})
191	@echo "You never bootstrapped pkgsrc on your machine.  You can install it with:"
192	@echo "    make pkgsrc_bootstrap"
193.endif
194.if !exists (${PKGBIN_MKISOFS})
195	@echo
196	@echo "Your machine does not have cdrtools installed.  You can install it with:"
197	@echo "    make pkgsrc_cdrecord"
198.endif
199.if !defined(PKGSRC_PATH)
200	@echo "Please set PKGSRC_PATH to the pkgsrc tree that shall be used for"
201	@echo "package building.  For example /usr/pkgsrc.  See the Makefile"
202	@echo "in /usr if you are unfamiliar with pkgsrc."
203.endif
204.if !exists (${PKGBIN_MKISOFS})
205	@exit 1
206.endif
207.if !defined(PKGSRC_PATH)
208	@exit 1
209.endif
210
211buildworld1 buildworld2:
212	cd ${.CURDIR}/..; \
213	${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
214		make -j ${MAKE_JOBS} -DWANT_INSTALLER ${.TARGET:C/build(.*)2/quick\1/:C/1//}
215
216buildkernel1 buildkernel2:
217	cd ${.CURDIR}/..; \
218	for kernconf in ${KERNCONF}; do \
219		${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
220			make -j ${MAKE_JOBS} ${.TARGET:C/build(.*)2/quick\1/:C/1//} \
221			KERNCONF=$${kernconf}; \
222	done
223
224# note that we do not want to mess with any /usr/obj directories not related
225# to buildworld, buildkernel, or nrelease, so we must supply the proper
226# MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
227# buildkernel mechanism.
228#
229# Unconditionally clean out /usr/release/root so a previous img build
230# does not blow up a future quick iso build
231#
232# We install with INSTALLSTRIPPEDMODULES to make things fit into the ISO.
233# We leave the kernel's debug variables intact.
234#
235buildiso:
236	-rm -rf ${ISOROOT}
237	-chflags -R noschg ${ISOROOT}
238	rm -rf ${ISOROOT}
239	mkdir -p ${ISOROOT}
240	if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
241	( cd ${.CURDIR}/..; make -DWANT_INSTALLER DESTDIR=${ISOROOT} installworld )
242	( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease \
243		make -m ${.CURDIR}/../share/mk DESTDIR=${ISOROOT} distribution )
244	cpdup ${ISOROOT}/etc ${ISOROOT}/etc.hdd
245	cd ${.CURDIR}/..; \
246	for kernconf in ${KERNCONF}; do \
247		make DESTDIR=${ISOROOT} installkernel \
248			KERNCONF=$${kernconf} \
249			DESTKERNDIR=/boot/kernel.$${kernconf} \
250			INSTALLSTRIPPEDMODULES=y; \
251		ln -s kernel ${ISOROOT}/boot/kernel.$${kernconf}/kernel.BOOTP; \
252		rm -rf ${ISOROOT}/boot/kernel.$${kernconf}.old; \
253	done
254.if ${MACHINE_ARCH} == "i386"
255	mv ${ISOROOT}/boot/kernel.GENERIC ${ISOROOT}/boot/kernel.UP
256	mv ${ISOROOT}/boot/kernel.GENERIC_SMP ${ISOROOT}/boot/kernel.SMP
257.else
258	mv ${ISOROOT}/boot/kernel.X86_64_GENERIC ${ISOROOT}/boot/kernel.UP
259	mv ${ISOROOT}/boot/kernel.X86_64_GENERIC_SMP ${ISOROOT}/boot/kernel.SMP
260.endif
261	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
262	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
263	dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
264
265# The GUI build includes the pkgsrc tree (~1G+) while the nominal release
266# build does not.
267#
268# The GUI build includes full sources while the nominal release build
269# only includes kernel sources (~27MB).
270#
271srcs:
272.if !defined(WITHOUT_SRCS)
273.if make(gui)
274	cd ${ISOROOT}/usr && make pkgsrc-create GITHOST=${GITHOST}
275	cd ${ISOROOT}/usr && make src-create GITHOST=${GITHOST}
276.else
277	rm -f ${ISOROOT}/usr/src-sys.tgz
278	rm -f ${ISOROOT}/usr/src-sys.tar.bz2
279	cd ${.CURDIR}/.. && tar --exclude .git -s '/^\./src/' \
280		-cf - ./Makefile ./Makefile.inc1 ./sys | \
281		bzip2 -9 > ${ISOROOT}/usr/src-sys.tar.bz2
282.endif
283.endif
284
285# Customize the ISO by copying rootskels in reverse priority order,
286# building packages, and doing other post-install tasks.
287#
288customizeiso:
289	# Copy the rootskels.  Allow sources to be owned by someone other
290	# than root (as is common when checked out via git).
291	#
292.for ROOTSKEL in ${ROOTSKELS}
293	cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
294	@test -O ${.CURDIR} || echo "chowning copied files to root:wheel"
295	@test -O ${.CURDIR} || ((cd ${ROOTSKEL} && find .) | fgrep -v cpignore | (cd ${ISOROOT} && xargs chown root:wheel))
296.endfor
297	pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
298.for UPGRADE_ITEM in Makefile			\
299		     etc.${MACHINE_ARCH} 	\
300		     isdn/Makefile		\
301		     rc.d/Makefile		\
302		     periodic/Makefile		\
303		     periodic/daily/Makefile	\
304		     periodic/security/Makefile	\
305		     periodic/weekly/Makefile	\
306		     periodic/monthly/Makefile
307	cp -R ${.CURDIR}/../etc/${UPGRADE_ITEM} ${ISOROOT}/etc/${UPGRADE_ITEM}
308.endfor
309	#
310	# Setup some things & mount pkgsrc tree.  Use defensive umounts and
311	# rm -rf's to allow restarts.  Allow /usr/pkgsrc to be read-only.
312	#
313	# If we did not get past the bootstrap we clean out the entire
314	# /usr/pkg infrastructure.  Otherwise we attempt to pick up where
315	# we left off.
316	#
317	cp -p /etc/resolv.conf ${ISOROOT}/etc
318	${CHROOT_CMD} "ldconfig -elf /usr/lib /usr/lib/gcc* /usr/lib/compat"
319	-@umount ${ISOROOT}/usr/pkgsrc/distfiles
320	-@umount ${ISOROOT}/usr/pkgsrc
321	-@umount ${ISOROOT}/dev
322	mkdir -p ${ISODIR}/distfiles
323	rm -rf ${ISOROOT}/usr/pkgobj
324	#
325	# Mount /usr/pkgsrc, make sure /usr/pkgsrc/distfiles is writable.
326	# Make /usr/pkgsrc read-only for safety, else a failed umount and
327	# our rm -rf will do bad things.
328	#
329	mkdir -p ${ISOROOT}/usr/pkgobj
330	mkdir -p ${ISOROOT}/usr/pkgobj/bootstrap
331	mkdir -p ${ISOROOT}/usr/pkgsrc
332	mount_null -o ro ${PKGSRC_PATH} ${ISOROOT}/usr/pkgsrc
333	mount_null /dev ${ISOROOT}/dev
334	cp /etc/shells ${ISOROOT}/usr/pkgsrc/distfiles/.test > /dev/null 2>&1 \
335	    || mount_null ${ISODIR}/distfiles ${ISOROOT}/usr/pkgsrc/distfiles
336	#
337	# Bootstrap, if not already installed, and add licenses needed
338	# for the gui release
339	#
340	test -e ${ISODIR}/.didbootstrap || \
341	    rm -rf ${ISOROOT}/usr/pkg ${ISOROOT}/var/db/pkg \
342		    ${ISOROOT}/var/db/pkg.refcount
343	test -e ${ISODIR}/.didbootstrap || \
344	    ${CHROOT_CMD} "cd /usr/pkgsrc/bootstrap;    \
345		export share_dir=/usr/pkgobj/bootstrap/work/share; \
346		./bootstrap --workdir /usr/pkgobj/bootstrap/work"
347	test -e ${ISODIR}/.didbootstrap || \
348	    echo ".ifdef BSD_PKG_MK	# added by nrelease" \
349		>> ${ISOROOT}/usr/pkg/etc/mk.conf
350	test -e ${ISODIR}/.didbootstrap || \
351	    echo "PKG_DEFAULT_OPTIONS='dri inet6'" \
352		>> ${ISOROOT}/usr/pkg/etc/mk.conf
353.if make(gui)
354	test -e ${ISODIR}/.didbootstrap || \
355	    echo "ACCEPTABLE_LICENSES+=openmotif-license" \
356		>> ${ISOROOT}/usr/pkg/etc/mk.conf
357	test -e ${ISODIR}/.didbootstrap || \
358	    echo "ACCEPTABLE_LICENSES+=vim-license" \
359		>> ${ISOROOT}/usr/pkg/etc/mk.conf
360.endif
361	test -e ${ISODIR}/.didbootstrap || \
362	    echo ".endif			# added by nrelease" \
363		>> ${ISOROOT}/usr/pkg/etc/mk.conf
364	test -e ${ISODIR}/.didbootstrap || sync
365	test -e ${ISODIR}/.didbootstrap || touch ${ISODIR}/.didbootstrap
366	#
367	# Build and install packages, skip packages already installed
368	#
369.for PKG in ${PKGSRC_PACKAGES}
370	${CHROOT_CMD} "cd /usr/pkgsrc/${PKG} && \
371	    (bmake check > /dev/null 2>&1 || \
372	    bmake ${PKGSRC_OPTIONS} clean build install)"
373.endfor
374	#
375	# Remove packages which nothing depends on, add a whatis database
376	# for pkgsrc manual pages, create an initial locate database and
377	# clean up
378	#
379	${CHROOT_CMD} "pkg_leaves | xargs pkg_delete -R"
380	${CHROOT_CMD} "makewhatis /usr/pkg/man"
381	-umount ${ISOROOT}/usr/pkgsrc/distfiles
382	umount ${ISOROOT}/usr/pkgsrc
383	rm -rf ${ISOROOT}/usr/pkgobj
384	rm -f ${ISOROOT}/etc/resolv.conf
385	${CHROOT_CMD} /etc/periodic/weekly/310.locate
386	umount ${ISOROOT}/dev
387	#
388	# Recopy files that pkgsrc may have updated in /etc into /etc.hdd
389	#
390	cpdup ${ISOROOT}/etc/shells ${ISOROOT}/etc.hdd/shells
391	cpdup ${ISOROOT}/etc/group ${ISOROOT}/etc.hdd/group
392
393# no iso is generated for gui builds, just img.
394#
395mkiso:
396.if !make(gui)
397	( cd ${ISOROOT}; ${PKGBIN_MKISOFS} -b boot/cdboot -no-emul-boot \
398		-R -J -o ${ISOFILE} \
399		-V "DragonFly `${.CURDIR}/../tools/gitrev.sh | cut -c -22`" . )
400.endif
401
402mkimg:
403	if [ ! -d ${IMGMNT} ]; then mkdir -p ${IMGMNT}; fi
404	-if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; 		\
405	    vnconfig -u `cat ${ISODIR}/vn.which`; fi
406.ifdef IMGSIZE
407	@echo "STEP: use an image size of ${IMGSIZE} 512-byte sectors"
408	rm -f ${IMGFILE}
409	sz=`bc -e "((${IMGSIZE}) * 512)" -equit`; truncate -s $${sz} ${IMGFILE}
410.else
411	@echo "STEP: determine required image size in 1GB steps"
412	sz=`du -ck ${ISOROOT} | tail -n 1 | cut -f 1`;			\
413	    sz=`bc -e "(($${sz}) * 1.15 + 999999) / 1000000" -equit | \
414	    cut -f1 -d.`;						\
415	    sz=`bc -e "(($${sz}) * 953)" -equit | cut -f1 -d.`;		\
416	    rm -f ${IMGFILE};						\
417	    truncate -s $${sz}M ${IMGFILE};
418.endif
419	fdisk -IB -p ${IMGFILE}
420	@echo "STEP: determine free vn device"
421	vnconfig -l | grep "not in use" | head -n 1 | 			\
422	    cut -f 1 -d: > ${ISODIR}/vn.which
423	vnconfig -e -s labels `cat ${ISODIR}/vn.which` ${IMGFILE}
424	@echo "STEP: write standard disklabel"
425	disklabel -w -r `cat ${ISODIR}/vn.which`s1 auto
426	@echo "STEP: read disklabel back"
427	disklabel -r `cat ${ISODIR}/vn.which`s1 > ${IMGFILE}.label
428	@echo "STEP: determine number of sectors of whole disk"
429	secs=`tail -n 1 ${IMGFILE}.label | cut -f 3 -w`;		\
430	    echo "  a:  $${secs} 0 4.2BSD" >> ${IMGFILE}.label;
431	@echo "STEP: write modified disklabel back"
432	disklabel -R -r `cat ${ISODIR}/vn.which`s1 ${IMGFILE}.label
433	rm ${IMGFILE}.label
434	@echo "STEP: write bootsector"
435	disklabel -B `cat ${ISODIR}/vn.which`s1
436	boot0cfg -B -o noupdate `cat ${ISODIR}/vn.which`
437	newfs /dev/`cat ${ISODIR}/vn.which`s1a
438	mount /dev/`cat ${ISODIR}/vn.which`s1a ${IMGMNT}
439	cpdup ${ISOROOT} ${IMGMNT}
440	@echo "STEP: fixup ${IMGMNT}/etc/fstab"
441	echo "/dev/${IMGUSBDEV}s1a / ufs rw,noatime 0 1" > ${IMGMNT}/etc/fstab
442	echo "proc /proc procfs rw 0 0" >> ${IMGMNT}/etc/fstab
443	@echo "STEP: fixup ${IMGMNT}/boot/loader.conf"
444	-fgrep -v kernel_options ${IMGMNT}/boot/loader.conf > ${IMGMNT}/boot/loader.conf.new
445	echo 'vfs.root.mountfrom="ufs:${IMGUSBDEV}s1a"' >> ${IMGMNT}/boot/loader.conf.new
446	mv ${IMGMNT}/boot/loader.conf.new ${IMGMNT}/boot/loader.conf
447	@echo "STEP: cleanup"
448	df ${IMGMNT}
449	umount ${IMGMNT}
450	vnconfig -u `cat ${ISODIR}/vn.which`
451	rm -f ${ISODIR}/vn.which
452	rmdir ${IMGMNT}
453	@echo "STEP: done"
454
455clean:
456	-umount ${ISOROOT}/usr/pkgsrc/distfiles > /dev/null 2>&1
457	-umount ${ISOROOT}/usr/pkgsrc > /dev/null 2>&1
458	-umount ${ISOROOT}/dev > /dev/null 2>&1
459	-if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; 		\
460	    vnconfig -u `cat ${ISODIR}/vn.which`; fi
461	if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
462	rm -rf ${ISOROOT}
463	rm -rf ${NRLOBJDIR}/nrelease
464	rm -f ${ISODIR}/.didbootstrap ${ISODIR}/vn.which
465
466realclean:	clean
467	rm -rf ${OBJSYS}/${KERNCONF}
468	#
469	# do not use PKGSRC_PKG_PATH here, we do not want to destroy an
470	# override location.
471	#
472	rm -rf ${ISODIR}/packages
473	rm -rf ${ISODIR}/distfiles
474
475pkgsrc_bootstrap:
476	mkdir -p /usr/release/bootstrap
477	(cd ${PKGSRC_PATH}/bootstrap; \
478	    export share_dir=/usr/release/bootstrap/share; \
479	    ./bootstrap --workdir /usr/release/bootstrap)
480
481pkgsrc_cdrecord:
482.if !exists (${PKGBIN_MKISOFS})
483	(cd ${PKGSRC_PATH}/sysutils/cdrtools; bmake clean build install)
484.endif
485
486help all:
487	@echo "make [gui] release   - complete build from scratch"
488	@echo "make [gui] quick     - attempt to do an incremental rebuild"
489	@echo "make [gui] realquick - attempt to restart after world & kernel"
490	@echo "make [gui] restartpkgs - attempt to restart at the pkg building stage"
491	@echo ""
492	@echo "PKGSRC_EXTRA_PACKAGES may be used to add additional pkgs"
493	@echo "GITHOST may be used to override git.dragonflybsd.org"
494	@echo "IMGSIZE may be used to override the .img (in 512-byte sectors)"
495
496.PHONY: release quickrel realquickrel
497.PHONY: installer
498.PHONY: quick realquick
499.PHONY: check buildworld1 buildworld2
500.PHONY: buildkernel1 buildkernel2 buildiso customizeiso mkiso mkimg
501.PHONY: clean realclean help all srcs
502
503.include <bsd.prog.mk>
504