sysctl_add_oid.9: Reduce diffs to Free a bit.
[dragonfly.git] / nrelease / Makefile
... / ...
CommitLineData
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
17DPORTS_PATH?= /usr/dports
18ISODIR?= /usr/release
19ISOROOT?= ${ISODIR}/root
20OBJSYS= ${.OBJDIR}/../sys
21GITHOST?= git.dragonflybsd.org
22
23MAKE_JOBS?= $$(sysctl -n hw.ncpu)
24
25# XXX makeshift fix to build the right kernel for the (target) architecture
26# We should configure this in the platform files somehow
27.if ${MACHINE_ARCH} == "i386"
28KERNCONF ?= GENERIC
29.else
30KERNCONF ?= X86_64_GENERIC
31.endif
32
33CHROOT_CMD?= /usr/sbin/chroot ${ISOROOT} sh -c
34
35# User may specify extra packages in addition to the defaults
36#
37DPORTS_EXTRA_PACKAGES?=
38
39# dports packages to be built and installed on the release ISO
40#
41# MISSING: csup
42#
43DPORTS_PACKAGES?= devel/git \
44 dns/bind98 \
45 net/isc-dhcp42-client \
46 net/isc-dhcp42-server \
47 sysutils/cdrtools \
48 ${PKGSRC_EXTRA_PACKAGES}
49
50# dports options to use when building packages
51#
52DPORTS_OPTIONS+= -DBATCH
53.if !make(gui)
54DPORTS_OPTIONS.devel_git+= -DWITHOUT_CONTRIB -DWITHOUT_PERL
55.endif
56
57# Specify which root skeletons are required, and let the user include
58# their own. They are copied into ISODIR during the `customizeiso'
59# target; each overwrites the last.
60#
61REQ_ROOTSKELS= ${.CURDIR}/root
62ROOTSKELS?= ${REQ_ROOTSKELS}
63
64.if make(notyet)
65# LIST OF PACKAGES NOT INCLUDED DUE TO BUILD ISSUES:
66# chat/pidgin textproc/enchant dependency is broken
67# x11/rxvt-unicode broken configure
68# net/nmap tries to access openssl/md2.h which does not
69# exist.
70# sysutils/idesk dying on link __sync_fetch_and_add_4
71#
72ISOFILE?= ${ISODIR}/dfly-gui.iso
73IMGFILE?= ${ISODIR}/dfly-gui.img
74
75# NOTE: order important, do not sort package list
76#
77# Apps we want in the gui build but which have problems building:
78# chat/xchat link error on x86-64, something about ___progname
79#
80#
81.if !make(nopkgs)
82PKGSRC_PACKAGES+= meta-pkgs/modular-xorg-libs \
83 meta-pkgs/modular-xorg-fonts \
84 meta-pkgs/modular-xorg-apps \
85 meta-pkgs/modular-xorg-drivers \
86 x11/libXinerama \
87 wm/fluxbox \
88 wm/fvwm \
89 www/firefox \
90 print/xpdf \
91 shells/zsh \
92 editors/emacs \
93 editors/vim \
94 chat/irssi \
95 x11/modular-xorg-server \
96 x11/eterm \
97 lang/perl5 \
98 editors/nano \
99 shells/bash \
100 devel/exctags \
101 archivers/zip \
102 security/sudo \
103 www/links-gui \
104 net/wget \
105 fonts/terminus-font \
106 net/rsync \
107 time/asclock \
108 misc/screen \
109 devel/scmgit-gitk
110.endif
111
112ROOTSKELS+= ${.CURDIR}/gui
113.endif
114
115ISOFILE ?= ${ISODIR}/dfly.iso
116IMGFILE ?= ${ISODIR}/dfly.img
117
118IMGMNT ?= ${ISODIR}/mnt
119
120# USB umass now probes starting at da8, so the usb stick is
121# probably sitting on da8.
122#
123IMGUSBDEV ?= da8
124
125# note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
126# the additional '/nrelease' manually, as a safety measure.
127#
128NRLOBJDIR?= /usr/obj
129
130#########################################################################
131# BASE ISO TARGETS #
132#########################################################################
133
134release: check clean buildworld1 buildkernel1 \
135 buildiso srcs customizeiso mkiso mkimg
136
137quickrel: check clean buildworld2 buildkernel2 \
138 buildiso srcs customizeiso mkiso mkimg
139
140realquickrel: check clean \
141 buildiso srcs customizeiso mkiso mkimg
142
143restartpkgs: check customizeiso mkiso mkimg
144
145quick: quickrel
146
147realquick: realquickrel
148
149
150#########################################################################
151# CORE SUPPORT TARGETS #
152#########################################################################
153
154check:
155.if !exists(/usr/local/bin/mkisofs) && !exists(/usr/pkg/bin/mkisofs)
156 @echo
157 @echo "Your machine does not have cdrtools installed. You can install it with:"
158 @echo " pkg install cdrecord"
159.endif
160.if !defined(DPORTS_PATH)
161 @echo "Please set DPORTS_PATH to the dports tree that shall be used for"
162 @echo "package building. For example /usr/dports. See the Makefile"
163 @echo "in /usr if you are unfamiliar with dports."
164.endif
165.if !exists(/usr/local/bin/mkisofs) && !exists(/usr/pkg/bin/mkisofs)
166 @/usr/bin/false
167.endif
168.if !defined(DPORTS_PATH)
169 @/usr/bin/false
170.endif
171
172buildworld1 buildworld2:
173 cd ${.CURDIR}/..; \
174 ${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
175 make -j ${MAKE_JOBS} -DWANT_INSTALLER ${.TARGET:C/build(.*)2/quick\1/:C/1//}
176
177buildkernel1 buildkernel2:
178 cd ${.CURDIR}/..; \
179 for kernconf in ${KERNCONF}; do \
180 ${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
181 make -j ${MAKE_JOBS} ${.TARGET:C/build(.*)2/quick\1/:C/1//} \
182 KERNCONF=$${kernconf}; \
183 done
184
185# note that we do not want to mess with any /usr/obj directories not related
186# to buildworld, buildkernel, or nrelease, so we must supply the proper
187# MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
188# buildkernel mechanism.
189#
190# Unconditionally clean out ${ISOROOT} so a previous img build
191# does not blow up a future quick iso build
192#
193# We install with INSTALLSTRIPPEDMODULES to make things fit into the ISO.
194# We leave the kernel's debug variables intact.
195#
196buildiso:
197 -rm -rf ${ISOROOT}
198 -chflags -R noschg ${ISOROOT}
199 rm -rf ${ISOROOT}
200 mkdir -p ${ISOROOT}
201 if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
202 ( cd ${.CURDIR}/..; make -DWANT_INSTALLER DESTDIR=${ISOROOT} installworld )
203 ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease \
204 make -m ${.CURDIR}/../share/mk DESTDIR=${ISOROOT} distribution )
205 cpdup ${ISOROOT}/etc ${ISOROOT}/etc.hdd
206 cd ${.CURDIR}/..; \
207 for kernconf in ${KERNCONF}; do \
208 make DESTDIR=${ISOROOT} installkernel KERNCONF=$${kernconf}; \
209 done
210 rm -rf ${ISOROOT}/boot/kernel.old
211 ln -s kernel ${ISOROOT}/boot/kernel/kernel.BOOTP
212 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
213 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
214 dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
215
216# The GUI build includes the pkgsrc tree (~1G+) while the nominal release
217# build does not.
218#
219# The GUI build includes full sources while the nominal release build
220# only includes kernel sources (~27MB).
221#
222srcs:
223.if !defined(WITHOUT_SRCS)
224.if make(notyet)
225 rm -f ${ISOROOT}/usr/src-sys.tgz
226 rm -f ${ISOROOT}/usr/src-sys.tar.bz2
227 cd ${ISOROOT}/usr && make pkgsrc-create-repo GITHOST=${GITHOST}
228 # NOTE: Adding the git gc --aggressive helps by significantly
229 # reducing the disk space required.
230 #
231 cd ${ISOROOT}/usr/pkgsrc && git gc --aggressive
232 cd ${ISOROOT}/usr && make src-create-repo GITHOST=${GITHOST}
233.else
234 rm -f ${ISOROOT}/usr/src-sys.tgz
235 rm -f ${ISOROOT}/usr/src-sys.tar.bz2
236 cd ${.CURDIR}/.. && tar --exclude .git -s '/^\./src/' \
237 -cf - ./Makefile ./Makefile.inc1 ./sys | \
238 bzip2 -9 > ${ISOROOT}/usr/src-sys.tar.bz2
239.endif
240.endif
241
242# Customize the ISO by copying rootskels in reverse priority order,
243# building packages, and doing other post-install tasks.
244#
245customizeiso:
246 # Copy the rootskels. Allow sources to be owned by someone other
247 # than root (as is common when checked out via git).
248 #
249.for ROOTSKEL in ${ROOTSKELS}
250 cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
251 @test -O ${.CURDIR} || echo "chowning copied files to root:wheel"
252 @test -O ${.CURDIR} || ((cd ${ROOTSKEL} && find .) | fgrep -v cpignore | (cd ${ISOROOT} && xargs chown root:wheel))
253.endfor
254 pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
255.for UPGRADE_ITEM in Makefile \
256 etc.${MACHINE_ARCH} \
257 rc.d/Makefile \
258 periodic/Makefile \
259 periodic/daily/Makefile \
260 periodic/security/Makefile \
261 periodic/weekly/Makefile \
262 periodic/monthly/Makefile
263 cp -R ${.CURDIR}/../etc/${UPGRADE_ITEM} ${ISOROOT}/etc/${UPGRADE_ITEM}
264.endfor
265 #
266 # Setup some things & mount dports tree. Use defensive umounts and
267 # rm -rf's to allow restarts. Allow /usr/dports to be read-only.
268 #
269 cp -p /etc/resolv.conf ${ISOROOT}/etc
270 ${CHROOT_CMD} "ldconfig -elf /usr/lib /usr/lib/gcc* /usr/lib/compat"
271 -@umount ${ISOROOT}/usr/distfiles
272 -@umount ${ISOROOT}/usr/dports
273 -@umount ${ISOROOT}/dev
274 rm -rf ${ISOROOT}/usr/obj/dports
275 #
276 # Mount /usr/dports, make sure /usr/distfiles is writable.
277 # Make /usr/dports read-only for safety, else a failed umount and
278 # our rm -rf will do bad things.
279 #
280 mkdir -p ${ISOROOT}/usr/dports
281 mkdir -p ${ISOROOT}/usr/distfiles
282 mount_null -o ro ${DPORTS_PATH} ${ISOROOT}/usr/dports
283 mount_null /dev ${ISOROOT}/dev
284 cp /etc/shells ${ISOROOT}/usr/distfiles/.test > /dev/null 2>&1 \
285 || mount_null ${ISODIR}/distfiles ${ISOROOT}/usr/distfiles
286 #
287 # Build and install packages, skip packages already installed
288 #
289.for PKG in ${DPORTS_PACKAGES}
290 ${CHROOT_CMD} "cd /usr/dports/${PKG} && make ${DPORTS_OPTIONS} ${DPORTS_OPTIONS.${PKG:S/\//_/g}} install"
291.endfor
292.for PKG in ${DPORTS_PACKAGES}
293 ${CHROOT_CMD} "cd /usr/dports/${PKG} && make ${DPORTS_OPTIONS} clean"
294.endfor
295 #
296 # Remove packages which nothing depends on, add a whatis database
297 # for dports manual pages, create an initial locate database and
298 # clean up
299 #
300 ${CHROOT_CMD} "yes | pkg autoremove"
301 ${CHROOT_CMD} "makewhatis /usr/local/man"
302 -umount ${ISOROOT}/usr/distfiles
303 umount ${ISOROOT}/usr/dports
304 rm -rf ${ISOROOT}/usr/dports
305 rm -rf ${ISOROOT}/usr/obj/dports
306 rm -rf ${ISOROOT}/usr/distfiles
307 rm -f ${ISOROOT}/etc/resolv.conf
308 #
309 # Add a pkg.conf
310 #
311 cp -p ${ISOROOT}/usr/local/etc/pkg.conf.sample ${ISOROOT}/usr/local/etc/pkg.conf
312 #
313 # Finally, update the locate(8) database
314 #
315 ${CHROOT_CMD} /etc/periodic/weekly/310.locate
316 umount ${ISOROOT}/dev
317 #
318 # Recopy files that pkgsrc may have updated in /etc into /etc.hdd
319 #
320 cpdup ${ISOROOT}/etc/shells ${ISOROOT}/etc.hdd/shells
321 cpdup ${ISOROOT}/etc/group ${ISOROOT}/etc.hdd/group
322
323mkiso:
324 ( cd ${ISOROOT}; mkisofs -b boot/cdboot -no-emul-boot \
325 -R -J -o ${ISOFILE} \
326 -V "DragonFly `${.CURDIR}/../tools/gitrev.sh | cut -c -22`" . )
327
328mkimg:
329 if [ ! -d ${IMGMNT} ]; then mkdir -p ${IMGMNT}; fi
330 -if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; \
331 vnconfig -u `cat ${ISODIR}/vn.which`; fi
332.ifdef IMGSIZE
333 @echo "STEP: use an image size of ${IMGSIZE} 512-byte sectors"
334 rm -f ${IMGFILE}
335 sz=`bc -e "((${IMGSIZE}) * 512)" -equit`; truncate -s $${sz} ${IMGFILE}
336.else
337 @echo "STEP: Determine required image size in 1GB steps"
338 @echo " Leave ~600MB of unused space"
339 sz=`du -ck ${ISOROOT} | tail -n 1 | cut -f 1`; \
340 sz=`bc -e "(($${sz}) * 1.15 + 999999 + 600000) / 1000000" -equit | \
341 cut -f1 -d.`; \
342 sz=`bc -e "(($${sz}) * 953)" -equit | cut -f1 -d.`; \
343 rm -f ${IMGFILE}; \
344 truncate -s $${sz}M ${IMGFILE};
345.endif
346 fdisk -IB -p ${IMGFILE}
347 @echo "STEP: determine free vn device"
348 vnconfig -l | grep "not in use" | head -n 1 | \
349 cut -f 1 -d: > ${ISODIR}/vn.which
350 vnconfig -e -s labels `cat ${ISODIR}/vn.which` ${IMGFILE}
351 @echo "STEP: write standard disklabel"
352 disklabel -w -r `cat ${ISODIR}/vn.which`s1 auto
353 @echo "STEP: read disklabel back"
354 disklabel -r `cat ${ISODIR}/vn.which`s1 > ${IMGFILE}.label
355 @echo "STEP: determine number of sectors of whole disk"
356 secs=`tail -n 1 ${IMGFILE}.label | cut -f 3 -w`; \
357 echo " a: $${secs} 0 4.2BSD" >> ${IMGFILE}.label;
358 @echo "STEP: write modified disklabel back"
359 disklabel -R -r `cat ${ISODIR}/vn.which`s1 ${IMGFILE}.label
360 rm ${IMGFILE}.label
361 @echo "STEP: write bootsector"
362 disklabel -B `cat ${ISODIR}/vn.which`s1
363 boot0cfg -B -o noupdate `cat ${ISODIR}/vn.which`
364 newfs /dev/`cat ${ISODIR}/vn.which`s1a
365 mount /dev/`cat ${ISODIR}/vn.which`s1a ${IMGMNT}
366 cpdup ${ISOROOT} ${IMGMNT}
367 @echo "STEP: fixup ${IMGMNT}/etc/fstab"
368 echo "/dev/${IMGUSBDEV}s1a / ufs rw,noatime 0 1" > ${IMGMNT}/etc/fstab
369 echo "dummy /tmp tmpfs rw 0 0" >> ${IMGMNT}/etc/fstab
370 echo "dummy /var/tmp tmpfs rw 0 0" >> ${IMGMNT}/etc/fstab
371 echo "dummy /var/run tmpfs rw 0 0" >> ${IMGMNT}/etc/fstab
372 echo "dummy /usr/obj tmpfs rw 0 0" >> ${IMGMNT}/etc/fstab
373 echo "proc /proc procfs rw 0 0" >> ${IMGMNT}/etc/fstab
374 @echo "STEP: fixup ${IMGMNT}/boot/loader.conf"
375 -fgrep -v kernel_options ${IMGMNT}/boot/loader.conf > ${IMGMNT}/boot/loader.conf.new
376 echo 'vfs.root.mountfrom="ufs:${IMGUSBDEV}s1a"' >> ${IMGMNT}/boot/loader.conf.new
377 mv ${IMGMNT}/boot/loader.conf.new ${IMGMNT}/boot/loader.conf
378 @echo "STEP: cleanup"
379 df ${IMGMNT}
380 umount ${IMGMNT}
381 vnconfig -u `cat ${ISODIR}/vn.which`
382 rm -f ${ISODIR}/vn.which
383 rmdir ${IMGMNT}
384 @echo "STEP: done"
385
386clean:
387 -umount ${ISOROOT}/usr/distfiles > /dev/null 2>&1
388 -umount ${ISOROOT}/usr/dports > /dev/null 2>&1
389 -umount ${ISOROOT}/dev > /dev/null 2>&1
390 -if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; \
391 vnconfig -u `cat ${ISODIR}/vn.which`; fi
392 if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
393 rm -rf ${ISOROOT}
394 rm -rf ${NRLOBJDIR}/nrelease
395 rm -f ${ISODIR}/.didbootstrap ${ISODIR}/vn.which
396
397realclean: clean
398 rm -rf ${OBJSYS}/${KERNCONF}
399 rm -rf ${ISODIR}/packages
400 rm -rf ${ISODIR}/distfiles
401
402help all:
403 @echo "make [gui] release - complete build from scratch"
404 @echo "make [gui] quick - attempt to do an incremental rebuild"
405 @echo "make [gui] realquick - attempt to restart after world & kernel"
406 @echo "make [gui] restartpkgs - attempt to restart at the pkg building stage"
407 @echo ""
408 @echo "DPORTS_EXTRA_PACKAGES may be used to add additional pkgs"
409 @echo "GITHOST may be used to override git.dragonflybsd.org"
410 @echo "IMGSIZE may be used to override the .img (in 512-byte sectors)"
411
412.PHONY: release quickrel realquickrel
413.PHONY: installer
414.PHONY: quick realquick
415.PHONY: check buildworld1 buildworld2
416.PHONY: buildkernel1 buildkernel2 buildiso customizeiso mkiso mkimg
417.PHONY: clean realclean help all srcs
418
419.include <bsd.prog.mk>