1 #########################################################################
3 #########################################################################
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.
9 # img is now the default (produces both the .iso and .img)
11 gui installer img nopkgs
:
13 #########################################################################
15 #########################################################################
18 ISOROOT?
= ${ISODIR}/root
19 OBJSYS
= ${.OBJDIR
}/..
/sys
20 GITHOST?
= git.dragonflybsd.org
22 MAKE_JOBS?
= $$(sysctl
-n hw.ncpu
)
24 # temporary until everybody has converted to x86_64
25 .if
${MACHINE_ARCH} == "amd64"
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"
35 KERNCONF ?
= X86_64_GENERIC
38 PKGSRC_PREFIX?
= /usr
/pkg
39 PKGBIN_PKG_ADD?
= ${PKGSRC_PREFIX}/sbin
/pkg_add
40 PKGBIN_PKG_DELETE?
= ${PKGSRC_PREFIX}/sbin
/pkg_delete
41 PKGBIN_PKG_ADMIN?
= ${PKGSRC_PREFIX}/sbin
/pkg_admin
42 PKGBIN_MKISOFS?
= ${PKGSRC_PREFIX}/bin
/mkisofs
43 PKGSRC_PKG_PATH?
= ${ISODIR}/packages
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.
49 CHROOT_CMD?
= env
-i CCVER
=${CCVER
:Q
} /usr
/sbin
/chroot
${ISOROOT} sh
-c
51 # User may specify extra packages in addition to the defaults
53 PKGSRC_EXTRA_PACKAGES?
=
55 # Pkgsrc packages to be built and installed on the release ISO
57 PKGSRC_PACKAGES?
= pkgtools
/pkg_leaves \
66 ${PKGSRC_EXTRA_PACKAGES}
68 # pkgsrc options to use when building packages
70 PKGSRC_OPTIONS
+= MAKE_JOBS
=${MAKE_JOBS}
71 PKGSRC_OPTIONS
+= WRKOBJDIR
=/usr
/pkgobj
72 PKGSRC_OPTIONS
+= PKG_DEFAULT_OPTIONS
='dri inet6'
74 PKGSRC_OPTIONS
+= PKG_OPTIONS.scmgit
=-scmgit-gui
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.
82 OLD_PKGSRC_PACKAGES?
= cdrtools-2.01
.01.27nb1 \
84 bootstrap-kit-20070205 \
85 dfuibe_installer-1.1
.6 \
87 dfuibe_installer-1.1
.7nb1 \
90 gettext-tools-0.14
.6nb1 \
94 bootstrap-kit-20080211 \
95 cdrtools-ossdvd-2.01
.1.36nb2 \
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.
103 REQ_ROOTSKELS
= ${.CURDIR
}/root
104 ROOTSKELS?
= ${REQ_ROOTSKELS}
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
111 # sysutils/idesk dying on link __sync_fetch_and_add_4
114 ISOFILE?
= ${ISODIR}/dfly-gui.iso
115 IMGFILE?
= ${ISODIR}/dfly-gui.img
117 # NOTE: order important, do not sort package list
119 # Apps we want in the gui build but which have problems building:
120 # chat/xchat link error on x86-64, something about ___progname
124 PKGSRC_PACKAGES
+= meta-pkgs
/modular-xorg-libs \
125 meta-pkgs
/modular-xorg-fonts \
126 meta-pkgs
/modular-xorg-apps \
127 meta-pkgs
/modular-xorg-drivers \
137 x11
/modular-xorg-server \
147 fonts
/terminus-font \
153 ROOTSKELS
+= ${.CURDIR
}/gui
156 ISOFILE ?
= ${ISODIR}/dfly.iso
157 IMGFILE ?
= ${ISODIR}/dfly.img
159 IMGMNT ?
= ${ISODIR}/mnt
161 # USB umass now probes starting at da8, so the usb stick is
162 # probably sitting on da8.
166 # note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
167 # the additional '/nrelease' manually, as a safety measure.
171 #########################################################################
173 #########################################################################
175 release
: check clean buildworld1 buildkernel1 \
176 buildiso srcs customizeiso mkiso mkimg
178 quickrel
: check clean buildworld2 buildkernel2 \
179 buildiso srcs customizeiso mkiso mkimg
181 realquickrel
: check clean \
182 buildiso srcs customizeiso mkiso mkimg
184 restartpkgs
: check customizeiso mkiso mkimg
188 realquick
: realquickrel
191 #########################################################################
192 # CORE SUPPORT TARGETS #
193 #########################################################################
196 .if
!exists
(${PKGBIN_PKG_ADMIN})
197 @echo
"You never bootstrapped pkgsrc on your machine. You can install it with:"
198 @echo
" make pkgsrc_bootstrap"
200 .if
!exists
(${PKGBIN_MKISOFS})
202 @echo
"Your machine does not have cdrtools installed. You can install it with:"
203 @echo
" make pkgsrc_cdrecord"
205 .if
!defined
(PKGSRC_PATH
)
206 @echo
"Please set PKGSRC_PATH to the pkgsrc tree that shall be used for"
207 @echo
"package building. For example /usr/pkgsrc. See the Makefile"
208 @echo
"in /usr if you are unfamiliar with pkgsrc."
210 .if
!exists
(${PKGBIN_MKISOFS})
213 .if
!defined
(PKGSRC_PATH
)
217 buildworld1 buildworld2
:
219 ${WORLD_CCVER
:C
/^..
*$/WORLD_CCVER
=/}${WORLD_CCVER} \
220 make
-j
${MAKE_JOBS} -DWANT_INSTALLER
${.TARGET
:C
/build
(.
*)2/quick\
1/:C
/1//}
222 buildkernel1 buildkernel2
:
224 for kernconf in
${KERNCONF}; do \
225 ${WORLD_CCVER
:C
/^..
*$/WORLD_CCVER
=/}${WORLD_CCVER} \
226 make
-j
${MAKE_JOBS} ${.TARGET
:C
/build
(.
*)2/quick\
1/:C
/1//} \
227 KERNCONF
=$${kernconf}; \
230 # note that we do not want to mess with any /usr/obj directories not related
231 # to buildworld, buildkernel, or nrelease, so we must supply the proper
232 # MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
233 # buildkernel mechanism.
235 # Unconditionally clean out /usr/release/root so a previous img build
236 # does not blow up a future quick iso build
238 # We install with INSTALLSTRIPPEDMODULES to make things fit into the ISO.
239 # We leave the kernel's debug variables intact.
243 -chflags
-R noschg
${ISOROOT}
246 if
[ ! -d
${NRLOBJDIR}/nrelease
]; then mkdir
-p
${NRLOBJDIR}/nrelease
; fi
247 ( cd
${.CURDIR
}/..
; make
-DWANT_INSTALLER DESTDIR
=${ISOROOT} installworld
)
248 ( cd
${.CURDIR
}/..
/etc
; MAKEOBJDIRPREFIX
=${NRLOBJDIR}/nrelease \
249 make
-m
${.CURDIR
}/..
/share
/mk DESTDIR
=${ISOROOT} distribution
)
250 cpdup
${ISOROOT}/etc
${ISOROOT}/etc.hdd
252 for kernconf in
${KERNCONF}; do \
253 make DESTDIR
=${ISOROOT} installkernel KERNCONF
=$${kernconf}; \
255 rm -rf
${ISOROOT}/boot
/kernel.old
256 ln
-s kernel
${ISOROOT}/boot
/kernel
/kernel.BOOTP
257 mtree
-deU
-f
${.CURDIR
}/..
/etc
/mtree
/BSD.local.
dist -p
${ISOROOT}/usr
/local
/
258 mtree
-deU
-f
${.CURDIR
}/..
/etc
/mtree
/BSD.var.
dist -p
${ISOROOT}/var
259 dev_mkdb
-f
${ISOROOT}/var
/run
/dev.db
${ISOROOT}/dev
261 # The GUI build includes the pkgsrc tree (~1G+) while the nominal release
264 # The GUI build includes full sources while the nominal release build
265 # only includes kernel sources (~27MB).
268 .if
!defined
(WITHOUT_SRCS
)
270 rm -f
${ISOROOT}/usr
/src-sys.tgz
271 rm -f
${ISOROOT}/usr
/src-sys.
tar.bz2
272 cd
${ISOROOT}/usr
&& make pkgsrc-create-repo GITHOST
=${GITHOST}
273 cd
${ISOROOT}/usr
&& make src-create-repo GITHOST
=${GITHOST}
275 rm -f
${ISOROOT}/usr
/src-sys.tgz
276 rm -f
${ISOROOT}/usr
/src-sys.
tar.bz2
277 cd
${.CURDIR
}/..
&& tar --exclude .git
-s
'/^\./src/' \
278 -cf
- .
/Makefile .
/Makefile.inc1 .
/sys | \
279 bzip2
-9 > ${ISOROOT}/usr
/src-sys.
tar.bz2
283 # Customize the ISO by copying rootskels in reverse priority order,
284 # building packages, and doing other post-install tasks.
287 # Copy the rootskels. Allow sources to be owned by someone other
288 # than root (as is common when checked out via git).
290 .for ROOTSKEL in
${ROOTSKELS}
291 cpdup
-X cpignore
-o
${ROOTSKEL} ${ISOROOT}
292 @
test -O
${.CURDIR
} || echo
"chowning copied files to root:wheel"
293 @
test -O
${.CURDIR
} ||
((cd
${ROOTSKEL} && find .
) | fgrep
-v cpignore |
(cd
${ISOROOT} && xargs chown root
:wheel
))
295 pwd_mkdb
-p
-d
${ISOROOT}/etc
${ISOROOT}/etc
/master.passwd
296 .for UPGRADE_ITEM in Makefile \
297 etc.
${MACHINE_ARCH} \
301 periodic
/daily
/Makefile \
302 periodic
/security
/Makefile \
303 periodic
/weekly
/Makefile \
304 periodic
/monthly
/Makefile
305 cp
-R
${.CURDIR
}/..
/etc
/${UPGRADE_ITEM} ${ISOROOT}/etc
/${UPGRADE_ITEM}
308 # Setup some things & mount pkgsrc tree. Use defensive umounts and
309 # rm -rf's to allow restarts. Allow /usr/pkgsrc to be read-only.
311 # If we did not get past the bootstrap we clean out the entire
312 # /usr/pkg infrastructure. Otherwise we attempt to pick up where
315 cp
-p
/etc
/resolv.conf
${ISOROOT}/etc
316 ${CHROOT_CMD} "ldconfig -elf /usr/lib /usr/lib/gcc* /usr/lib/compat"
317 -@umount
${ISOROOT}/usr
/pkgsrc
/distfiles
318 -@umount
${ISOROOT}/usr
/pkgsrc
319 -@umount
${ISOROOT}/dev
320 mkdir
-p
${ISODIR}/distfiles
321 rm -rf
${ISOROOT}/usr
/pkgobj
323 # Mount /usr/pkgsrc, make sure /usr/pkgsrc/distfiles is writable.
324 # Make /usr/pkgsrc read-only for safety, else a failed umount and
325 # our rm -rf will do bad things.
327 mkdir
-p
${ISOROOT}/usr
/pkgobj
328 mkdir
-p
${ISOROOT}/usr
/pkgobj
/bootstrap
329 mkdir
-p
${ISOROOT}/usr
/pkgsrc
330 mount_null
-o ro
${PKGSRC_PATH} ${ISOROOT}/usr
/pkgsrc
331 mount_null
/dev
${ISOROOT}/dev
332 cp
/etc
/shells
${ISOROOT}/usr
/pkgsrc
/distfiles
/.
test > /dev
/null
2>&1 \
333 || mount_null
${ISODIR}/distfiles
${ISOROOT}/usr
/pkgsrc
/distfiles
335 # Bootstrap, if not already installed, and add licenses needed
336 # for the gui release
338 test -e
${ISODIR}/.didbootstrap || \
339 rm -rf
${ISOROOT}/usr
/pkg
${ISOROOT}/var
/db
/pkg \
340 ${ISOROOT}/var
/db
/pkg.refcount
341 test -e
${ISODIR}/.didbootstrap || \
342 ${CHROOT_CMD} "cd /usr/pkgsrc/bootstrap; \
343 export share_dir=/usr/pkgobj/bootstrap/work/share; \
344 env USE_DESTDIR=no ./bootstrap --workdir /usr/pkgobj/bootstrap/work"
345 test -e
${ISODIR}/.didbootstrap || \
346 echo
".ifdef BSD_PKG_MK # added by nrelease" \
347 >> ${ISOROOT}/usr
/pkg
/etc
/mk.conf
348 test -e
${ISODIR}/.didbootstrap || \
349 echo
"PKG_DEFAULT_OPTIONS=dri inet6" \
350 >> ${ISOROOT}/usr
/pkg
/etc
/mk.conf
352 test -e
${ISODIR}/.didbootstrap || \
353 echo
"ACCEPTABLE_LICENSES+=openmotif-license" \
354 >> ${ISOROOT}/usr
/pkg
/etc
/mk.conf
355 test -e
${ISODIR}/.didbootstrap || \
356 echo
"ACCEPTABLE_LICENSES+=vim-license" \
357 >> ${ISOROOT}/usr
/pkg
/etc
/mk.conf
359 test -e
${ISODIR}/.didbootstrap || \
360 echo
".endif # added by nrelease" \
361 >> ${ISOROOT}/usr
/pkg
/etc
/mk.conf
362 test -e
${ISODIR}/.didbootstrap || sync
363 test -e
${ISODIR}/.didbootstrap || touch
${ISODIR}/.didbootstrap
365 # Build and install packages, skip packages already installed
367 .for PKG in
${PKGSRC_PACKAGES}
368 ${CHROOT_CMD} "cd /usr/pkgsrc/${PKG} && \
369 (bmake check > /dev/null 2>&1 || \
370 env USE_DESTDIR=no bmake ${PKGSRC_OPTIONS} clean build install)"
373 # Remove packages which nothing depends on, add a whatis database
374 # for pkgsrc manual pages, create an initial locate database and
377 ${CHROOT_CMD} "pkg_leaves | xargs pkg_delete -R"
378 ${CHROOT_CMD} "makewhatis /usr/pkg/man"
379 -umount
${ISOROOT}/usr
/pkgsrc
/distfiles
380 umount
${ISOROOT}/usr
/pkgsrc
381 rm -rf
${ISOROOT}/usr
/pkgobj
382 rm -f
${ISOROOT}/etc
/resolv.conf
383 ${CHROOT_CMD} /etc
/periodic
/weekly
/310.locate
384 umount
${ISOROOT}/dev
386 # Recopy files that pkgsrc may have updated in /etc into /etc.hdd
388 cpdup
${ISOROOT}/etc
/shells
${ISOROOT}/etc.hdd
/shells
389 cpdup
${ISOROOT}/etc
/group
${ISOROOT}/etc.hdd
/group
392 ( cd
${ISOROOT}; ${PKGBIN_MKISOFS} -b boot
/cdboot
-no-emul-boot \
393 -R
-J
-o
${ISOFILE} \
394 -V
"DragonFly `${.CURDIR}/../tools/gitrev.sh | cut -c -22`" .
)
397 if
[ ! -d
${IMGMNT} ]; then mkdir
-p
${IMGMNT}; fi
398 -if
[ -f
${ISODIR}/vn.which
]; then umount
${IMGMNT}; \
399 vnconfig
-u
`cat ${ISODIR}/vn.which`; fi
401 @echo
"STEP: use an image size of ${IMGSIZE} 512-byte sectors"
403 sz
=`bc -e "((${IMGSIZE}) * 512)" -equit`; truncate
-s
$${sz} ${IMGFILE}
405 @echo
"STEP: Determine required image size in 1GB steps"
406 @echo
" Leave ~600MB of unused space"
407 sz
=`du -ck ${ISOROOT} | tail -n 1 | cut -f 1`; \
408 sz
=`bc -e "(($${sz}) * 1.15 + 999999 + 600000) / 1000000" -equit | \
410 sz
=`bc -e "(($${sz}) * 953)" -equit | cut -f1 -d.`; \
412 truncate
-s
$${sz}M
${IMGFILE};
414 fdisk
-IB
-p
${IMGFILE}
415 @echo
"STEP: determine free vn device"
416 vnconfig
-l | grep
"not in use" | head
-n
1 | \
417 cut
-f
1 -d
: > ${ISODIR}/vn.which
418 vnconfig
-e
-s labels
`cat ${ISODIR}/vn.which` ${IMGFILE}
419 @echo
"STEP: write standard disklabel"
420 disklabel
-w
-r
`cat ${ISODIR}/vn.which`s1 auto
421 @echo
"STEP: read disklabel back"
422 disklabel
-r
`cat ${ISODIR}/vn.which`s1
> ${IMGFILE}.label
423 @echo
"STEP: determine number of sectors of whole disk"
424 secs
=`tail -n 1 ${IMGFILE}.label | cut -f 3 -w`; \
425 echo
" a: $${secs} 0 4.2BSD" >> ${IMGFILE}.label
;
426 @echo
"STEP: write modified disklabel back"
427 disklabel
-R
-r
`cat ${ISODIR}/vn.which`s1
${IMGFILE}.label
429 @echo
"STEP: write bootsector"
430 disklabel
-B
`cat ${ISODIR}/vn.which`s1
431 boot0cfg
-B
-o noupdate
`cat ${ISODIR}/vn.which`
432 newfs
/dev
/`cat ${ISODIR}/vn.which`s1a
433 mount
/dev
/`cat ${ISODIR}/vn.which`s1a
${IMGMNT}
434 cpdup
${ISOROOT} ${IMGMNT}
435 @echo
"STEP: fixup ${IMGMNT}/etc/fstab"
436 echo
"/dev/${IMGUSBDEV}s1a / ufs rw,noatime 0 1" > ${IMGMNT}/etc
/fstab
437 echo
"dummy /tmp tmpfs rw 0 0" >> ${IMGMNT}/etc
/fstab
438 echo
"dummy /var/tmp tmpfs rw 0 0" >> ${IMGMNT}/etc
/fstab
439 echo
"dummy /var/run tmpfs rw 0 0" >> ${IMGMNT}/etc
/fstab
440 echo
"dummy /usr/obj tmpfs rw 0 0" >> ${IMGMNT}/etc
/fstab
441 echo
"proc /proc procfs rw 0 0" >> ${IMGMNT}/etc
/fstab
442 @echo
"STEP: fixup ${IMGMNT}/boot/loader.conf"
443 -fgrep
-v kernel_options
${IMGMNT}/boot
/loader.conf
> ${IMGMNT}/boot
/loader.conf.new
444 echo
'vfs.root.mountfrom="ufs:${IMGUSBDEV}s1a"' >> ${IMGMNT}/boot
/loader.conf.new
445 mv
${IMGMNT}/boot
/loader.conf.new
${IMGMNT}/boot
/loader.conf
446 @echo
"STEP: cleanup"
449 vnconfig
-u
`cat ${ISODIR}/vn.which`
450 rm -f
${ISODIR}/vn.which
455 -umount
${ISOROOT}/usr
/pkgsrc
/distfiles
> /dev
/null
2>&1
456 -umount
${ISOROOT}/usr
/pkgsrc
> /dev
/null
2>&1
457 -umount
${ISOROOT}/dev
> /dev
/null
2>&1
458 -if
[ -f
${ISODIR}/vn.which
]; then umount
${IMGMNT}; \
459 vnconfig
-u
`cat ${ISODIR}/vn.which`; fi
460 if
[ -d
${ISOROOT} ]; then chflags
-R noschg
${ISOROOT}; fi
462 rm -rf
${NRLOBJDIR}/nrelease
463 rm -f
${ISODIR}/.didbootstrap
${ISODIR}/vn.which
466 rm -rf
${OBJSYS}/${KERNCONF}
468 # do not use PKGSRC_PKG_PATH here, we do not want to destroy an
471 rm -rf
${ISODIR}/packages
472 rm -rf
${ISODIR}/distfiles
475 mkdir
-p
/usr
/release
/bootstrap
476 (cd
${PKGSRC_PATH}/bootstrap
; \
477 export share_dir
=/usr
/release
/bootstrap
/share
; \
478 .
/bootstrap
--workdir
/usr
/release
/bootstrap
)
481 .if
!exists
(${PKGBIN_MKISOFS})
482 (cd
${PKGSRC_PATH}/sysutils
/cdrtools
; bmake
clean build
install)
486 @echo
"make [gui] release - complete build from scratch"
487 @echo
"make [gui] quick - attempt to do an incremental rebuild"
488 @echo
"make [gui] realquick - attempt to restart after world & kernel"
489 @echo
"make [gui] restartpkgs - attempt to restart at the pkg building stage"
491 @echo
"PKGSRC_EXTRA_PACKAGES may be used to add additional pkgs"
492 @echo
"GITHOST may be used to override git.dragonflybsd.org"
493 @echo
"IMGSIZE may be used to override the .img (in 512-byte sectors)"
495 .PHONY
: release quickrel realquickrel
497 .PHONY
: quick realquick
498 .PHONY
: check buildworld1 buildworld2
499 .PHONY
: buildkernel1 buildkernel2 buildiso customizeiso mkiso mkimg
500 .PHONY
: clean realclean help
all srcs
502 .
include <bsd.prog.mk
>