4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" $FreeBSD: src/share/man/man7/build.7,v 1.19.2.1 2002/03/18 08:33:02 murray Exp $
32 .Nd information on how to build the system
36 system and applications is located in
38 This directory contains the
40 sources, which is loosely defined as the things required to rebuild
41 the system to a useful state.
42 It also contains the source for the system documentation, including
46 for more information on how to obtain the
50 Third party applications have to be built using the
55 has targets for obtaining the dports tree.
60 gives specifics on how to obtain the tree for building packages.
66 to build and install the things in that directory.
69 command in any directory or
70 subdirectory of those directories has the same effect as issuing the
71 same command in all subdirectories of that directory.
72 With no target specified, the things in that directory are just built.
73 The following list provides the names and actions for other targets:
74 .Bl -tag -width ".Cm install"
76 Removes any files created during the build process.
78 Installs the results of the build for this directory.
84 .Bl -tag -width ".Cm installworld-force"
86 Rebuild everything but the kernel.
90 but skip bootstrap, build and cross-build tool steps.
91 This target can be used for incremental upgrades once a full build of the
92 world has been done with
97 but also skip the depend step.
99 Just do the bootstrap, build and cross-build steps.
101 Install everything built by
103 .It Cm installworld-force
106 This will install to a temporary directory, then copy the main binaries
107 and libraries with a static
111 and finally will issue a normal
115 It is a special case to be used on older systems as a last resort when
123 Rebuild the kernel and the kernel-modules.
125 Rebuild the kernel and the kernel-modules using native tools.
129 but do not clean out the obj modules.
130 This target can be used for incremental upgrades once a full
131 build of the kernel has been done with
133 .It Cm realquickkernel
136 but also skip the depend step.
138 Install the kernel and the kernel-modules.
139 .It Cm reinstallkernel
140 Reinstall the kernel and the kernel-modules.
145 Perform certain upgrades that have to be done before
148 will complain if they have not been done.
150 Upgrade the files in /etc and also setup the rest of the system for
155 Create a rescue initrd.
157 Build user commands, no libraries or include files.
159 Install user commands, no libraries or include files.
161 Manually archive binaries from installed world to location specified by
164 Delete archive created by
166 .It Cm backup-auto-clean
167 Delete archive created automatically during
170 Restore binaries from archive created by
172 .It Cm restoreworld-auto
173 Restore binaries from archive created automatically during
175 The archive location is specified by
179 .Bl -tag -width ".Ev MAKEOBJDIRPREFIX"
180 .It Ev TARGET_ARCH , TARGET_PLATFORM
181 The target machine processor architecture and hardware platform.
182 These have to be set for cross-building.
189 architecture known as AMD64, x86-64 or Intel 64, use:
190 .Bd -literal -offset indent
195 An existing directory to be the root of
196 the hierarchy where the resulting binaries will be
197 installed (the default is
199 .It Ev MAKEOBJDIRPREFIX
200 The directory hierarchy where the object files will be built (the default is
203 Used to override the path of
206 .Pa /etc/make.conf ) .
208 The name of one or more kernel configurations from which kernels should
209 be built (the default is
210 .Li X86_64_GENERIC ) .
212 The directory where the kernel configuration files are kept (the default is
213 .Pa /usr/src/sys/config ) .
215 Common suffix added to kernel and modules directory names, prefixed by
216 a single dot. For example,
217 .Bd -literal -offset indent
218 make DESTLABEL=test installkernel
222 .Pa /boot/kernel.test/kernel
224 .Pa /boot/kernel.test ,
227 Where to install the kernel and the modules (the default is
229 in the directory hierarchy specified by the environment variable
232 The name of the installed kernel file (the default is
234 under the directory specified by
236 This overrides the effect of
238 .It Ev DESTMODULESNAME
239 The name of the directory to install the kernel modules (the default is
241 under the directory specified by
243 This overrides the effect of
246 Directory for manual backup of binaries of installed world (default:
247 .Pa /var/backups/world_backup ) .
249 Directory for automatic backup of binaries of installed world (default:
250 .Ev MAKEOBJDIRPREFIX Ns /world_binaries/ Ns Ev DESTDIR ) .
252 When defined, the automatic backup feature of
256 Overrides the default optimization flags for kernel and module compiles.
258 Allows you to add additional compiler flags for kernel and module compiles.
261 to specify any optimization overrides, as some modules may have to override
262 it to enforce a lower optimization level.
265 There are two other mechanisms that users should be aware of. First,
269 will make a backup of the current kernel in
270 .Pa /boot/kernel.old .
271 Because people often do multiple installkernel operations, this backup
272 kernel can also get lost in the noise.
273 It is usually prudent to make a backup of the old kernel manually
274 every once in a while when you know that it is a good kernel. you can
275 do this after issuing the
277 by running the command:
278 .Bd -literal -offset indent
279 cpdup /boot/kernel.old /boot/kernel.bak
282 The advantage of this is that no installation mechanism will overwrite
284 .Pa /boot/kernel.bak ,
285 and in addition to that the loader's boot menu will check for its
286 existance and present a menu option 'b' to allow you to boot from it.
288 The second mechanism is related to the two-stage root mount.
289 When using an encrypted root, the system will actually boot from a
290 small UFS image stored as
291 .Pa /boot/kernel/initrd.img.gz .
292 This image will handle the encrypted configuration, mount, and chroot
294 This image is also used as the rescue ramdisk boot menu option.
295 This image is NOT updated automatically by
299 Instead, updating this image has to be done by running the manual command:
300 .Bd -literal -offset indent
304 It is usually a good idea to run this command after rebooting into a new
305 world that you installed (so you know the world you installed is good).
306 This command will update the rescue ramdisk image in
309 .Bl -tag -width ".Pa /usr/src/Makefile_upgrade.inc" -compact
310 .It Pa /etc/make.conf
311 .It Pa /etc/defaults/make.conf
312 .It Pa /usr/src/share/doc/Makefile
313 .It Pa /usr/src/Makefile
314 .It Pa /usr/src/Makefile.inc1
315 .It Pa /usr/src/Makefile_upgrade.inc
320 method of updating your system from the latest sources is:
321 .Bd -literal -offset indent
323 make buildkernel KERNCONF=FOO
324 make installkernel KERNCONF=FOO
329 After running these commands a system reboot is required,
330 otherwise many programs which have been rebuilt (such as
333 etc.) may not work with the old kernel which is still running.
335 The build and install order in the
337 section enforces that the new kernel is installed before the new
339 Sometimes it might be necessary to reboot the system between those two
342 .Dq Nm make Cm installworld
343 will tell you to do so.
358 .An Mike W. Meyer Aq Mt mwm@mired.org
360 .An Sascha Wildner Aq Mt swildner@gmail.com .