]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/config/config.8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / config / config.8
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)config.8    8.2 (Berkeley) 4/19/94
29 .\" $FreeBSD$
30 .\"
31 .Dd May 8, 2007
32 .Dt CONFIG 8
33 .Os
34 .Sh NAME
35 .Nm config
36 .Nd build system configuration files
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl CVgp
40 .Op Fl d Ar destdir
41 .Ar SYSTEM_NAME
42 .Nm
43 .Op Fl x Ar kernel
44 .Sh DESCRIPTION
45 The
46 .Nm
47 utility builds a set of system configuration files from the file
48 .Ar SYSTEM_NAME
49 which describes
50 the system to configure.
51 A second file
52 tells
53 .Nm
54 what files are needed to generate a system and
55 can be augmented by configuration specific set of files
56 that give alternate files for a specific machine
57 (see the
58 .Sx FILES
59 section below).
60 .Pp
61 Available options and operands:
62 .Bl -tag -width ".Ar SYSTEM_NAME"
63 .It Fl V
64 Print the
65 .Nm
66 version number.
67 .It Fl C
68 If the INCLUDE_CONFIG_FILE is present in a configuration file,
69 kernel image will contain full configuration files included
70 literally (preserving comments).
71 This flag is kept for backward compatibility.
72 .It Fl d Ar destdir
73 Use
74 .Ar destdir
75 as the output directory, instead of the default one.
76 Note that
77 .Nm
78 does not append
79 .Ar SYSTEM_NAME
80 to the directory given.
81 .It Fl m
82 Print the MACHINE and MACHINE_ARCH values for this
83 kernel and exit.
84 .It Fl g
85 Configure a system for debugging.
86 .It Fl x Ar kernel
87 Print kernel configuration file embedded into a kernel
88 file.
89 This option makes sense only if
90 .Cd "options INCLUDE_CONFIG_FILE"
91 entry was present in your configuration file.
92 .It Fl p
93 Configure a system for profiling; for example,
94 .Xr kgmon 8
95 and
96 .Xr gprof 1 .
97 If two or more
98 .Fl p
99 options are supplied,
100 .Nm
101 configures a system for high resolution profiling.
102 .It Ar SYSTEM_NAME
103 Specify the name of the system configuration file
104 containing device specifications, configuration options
105 and other system parameters for one system configuration.
106 .El
107 .Pp
108 The
109 .Nm
110 utility should be run from the
111 .Pa conf
112 subdirectory of the system source (usually
113 .Pa /sys/ Ns Va ARCH Ns Pa /conf ) ,
114 where
115 .Va ARCH
116 represents one of the architectures supported by
117 .Fx .
118 The
119 .Nm
120 utility creates the directory
121 .Pa ../compile/ Ns Ar SYSTEM_NAME
122 or the one given with the
123 .Fl d
124 option
125 as necessary and places all output files there.
126 The output of
127 .Nm
128 consists of a number of files; for the
129 .Tn i386 ,
130 they are:
131 .Pa Makefile ,
132 used by
133 .Xr make 1
134 in building the system;
135 header files,
136 definitions of
137 the number of various devices that will be compiled into the system.
138 .Pp
139 After running
140 .Nm ,
141 it is necessary to run
142 .Dq Li make depend
143 in the directory where the new makefile
144 was created.
145 The
146 .Nm
147 utility prints a reminder of this when it completes.
148 .Pp
149 If any other error messages are produced by
150 .Nm ,
151 the problems in the configuration file should be corrected and
152 .Nm
153 should be run again.
154 Attempts to compile a system that had configuration errors
155 are likely to fail.
156 .Sh DEBUG KERNELS
157 Traditional
158 .Bx
159 kernels are compiled without symbols due to the heavy load on the
160 system when compiling a
161 .Dq debug
162 kernel.
163 A debug kernel contains complete symbols for all the source files, and
164 enables an experienced kernel programmer to analyse the cause of a problem.
165 The
166 debuggers available prior to
167 .Bx 4.4 Lite
168 were able to find some information
169 from a normal kernel;
170 .Xr gdb 1
171 provides very little support for normal kernels, and a debug kernel is needed
172 for any meaningful analysis.
173 .Pp
174 For reasons of history, time and space, building a debug kernel is not the
175 default with
176 .Fx :
177 a debug kernel takes up to 30% longer to build and
178 requires about 30 MB of disk storage in the build directory, compared to about 6
179 MB for a non-debug kernel.
180 A debug kernel is about 11 MB in size, compared to
181 about 2 MB for a non-debug kernel.
182 This space is used both in the root file
183 system and at run time in memory.
184 Use the
185 .Fl g
186 option to build a debug kernel.
187 With this option,
188 .Nm
189 causes two kernel files to be built in the kernel build directory:
190 .Bl -bullet
191 .It
192 .Pa kernel.debug
193 is the complete debug kernel.
194 .It
195 .Pa kernel
196 is a copy of the kernel with the debug symbols stripped off.
197 This is equivalent
198 to the normal non-debug kernel.
199 .El
200 .Pp
201 There is currently little sense in installing and booting from a debug kernel,
202 since the only tools available which use the symbols do not run on-line.
203 There
204 are therefore two options for installing a debug kernel:
205 .Bl -bullet
206 .It
207 .Dq Li "make install"
208 installs
209 .Pa kernel
210 in the root file system.
211 .It
212 .Dq Li "make install.debug"
213 installs
214 .Pa kernel.debug
215 in the root file system.
216 .El
217 .Sh FILES
218 .Bl -tag -width ".Pa /sys/ Ns Va ARCH Ns Pa /compile/ Ns Ar SYSTEM_NAME" -compact
219 .It Pa /sys/conf/files
220 list of common files system is built from
221 .It Pa /sys/conf/Makefile. Ns Va ARCH
222 generic makefile for the
223 .Va ARCH
224 .It Pa /sys/conf/files. Ns Va ARCH
225 list of
226 .Va ARCH
227 specific files
228 .It Pa /sys/ Ns Va ARCH Ns Pa /compile/ Ns Ar SYSTEM_NAME
229 default kernel build directory for system
230 .Ar SYSTEM_NAME
231 on
232 .Va ARCH .
233 .El
234 .Sh SEE ALSO
235 .Xr config 5
236 .Pp
237 The
238 .Sx SYNOPSIS
239 portion of each device in section 4.
240 .Rs
241 .%T "Building 4.3 BSD UNIX System with Config"
242 .Re
243 .Sh HISTORY
244 The
245 .Nm
246 utility appeared in
247 .Bx 4.1 .
248 .Pp
249 Before support for
250 .Fl x
251 was introduced,
252 .Cd "options INCLUDE_CONFIG_FILE"
253 included entire configuration file that used to be embedded in
254 the new kernel.
255 This meant that
256 .Xr strings 1
257 could be used to extract it from a kernel:
258 to extract the configuration information, you had to use
259 the command:
260 .Pp
261 .Dl "strings -n 3 kernel | sed -n 's/^___//p'"
262 .Sh BUGS
263 The line numbers reported in error messages are usually off by one.