xref: /dragonfly/usr.sbin/config/config.8 (revision 92fc8b5c)
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.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)config.8	8.2 (Berkeley) 4/19/94
33.\" $FreeBSD: src/usr.sbin/config/config.8,v 1.21.2.7 2003/04/23 07:32:39 brueffer Exp $
34.\"
35.Dd March 28, 2010
36.Dt CONFIG 8
37.Os
38.Sh NAME
39.Nm config
40.Nd build system configuration files
41.Sh SYNOPSIS
42.Nm
43.Op Fl gpr
44.Op Fl d Ar destdir
45.Ar SYSTEM_NAME
46.Sh DESCRIPTION
47The
48.Nm
49utility builds a set of system configuration files from the file
50.Ar SYSTEM_NAME
51which describes
52the system to configure.
53A second file
54tells
55.Nm
56what files are needed to generate a system and
57can be augmented by configuration specific set of files
58that give alternate files for a specific machine
59(see the
60.Sx FILES
61section below).
62.Pp
63Available options and operands:
64.Bl -tag -width ".Ar SYSTEM_NAME"
65.It Fl d Ar destdir
66Use
67.Ar destdir
68as the output directory, instead of the default one.
69Note that
70.Nm
71does not append
72.Ar SYSTEM_NAME
73to the directory given.
74.It Fl g
75Configure a system for debugging.
76.It Fl p
77Configure a system for profiling; for example,
78.Xr kgmon 8
79and
80.Xr gprof 1 .
81If two or more
82.Fl p
83options are supplied,
84.Nm
85configures a system for high resolution profiling.
86.It Fl r
87Remove the old compile directory (see below).
88.It Ar SYSTEM_NAME
89Specify the name of the system configuration file
90containing device specifications, configuration options
91and other system parameters for one system configuration.
92.El
93.Pp
94.Nm
95should be run from the
96.Pa config
97subdirectory of the system source (usually
98.Pa /sys/config ) .
99.Nm
100creates the directory
101.Pa ../compile/ Ns Ar SYSTEM_NAME
102or the one given with the
103.Fl d
104option
105as necessary and places all output files there.
106If the output directory already exists and the
107.Fl r
108flag was specified, it will be removed first.
109The output of
110.Nm
111consists of a number of files; for the
112.Tn i386 ,
113they are:
114.Pa ioconf.c ,
115a description
116of what I/O devices are attached to the system;
117.Pa Makefile ,
118used by
119.Xr make 1
120in building the system;
121header files,
122definitions of
123the number of various devices that will be compiled into the system.
124.Pp
125After running
126.Nm ,
127it is necessary to run
128.Dq Li make depend
129in the directory where the new makefile
130was created.
131.Pp
132If any other error messages are produced by
133.Nm ,
134the problems in the configuration file should be corrected and
135.Nm
136should be run again.
137Attempts to compile a system that had configuration errors
138are likely to fail.
139.Pp
140If the
141.Cd "options INCLUDE_CONFIG_FILE"
142is used in the configuration file the
143entire input file is embedded in the new kernel.
144This means that
145.Xr strings 1
146can be used to extract it from a kernel:
147to extract the configuration information, use the command
148.Pp
149.Dl "strings -n 3 kernel | sed -n 's/^___//p'"
150.Sh DEBUG KERNELS
151Traditional
152.Bx
153kernels are compiled without symbols due to the heavy load on the
154system when compiling a
155.Dq debug
156kernel.
157A debug kernel contains complete symbols for all the source files, and
158enables an experienced kernel programmer to analyse the cause of a problem.
159The
160debuggers available prior to
161.Bx 4.4 Lite
162were able to find some information
163from a normal kernel;
164.Xr kgdb 1
165provides very little support for normal kernels, and a debug kernel is needed
166for any meaningful analysis.
167.Pp
168In order to ease posting bug reports for inexperienced users and
169make the debugging environment more uniform,
170.Dx
171installs kernel and modules unstripped.
172Debug information is not loaded into memory, so the only impact is
173a growth in root file-system consumption by 60MB.
174Those wishing to install stripped down kernel and modules can specify two new
175makeoptions in their kernel config file or when they run the
176kernel-related targets to make:
177.Bl -tag -width ".Va INSTALLSTRIPPEDMODULES=1"
178.It Va INSTALLSTRIPPED=1
179The installed kernel and modules will be stripped of debug info.
180.It Va INSTALLSTRIPPEDMODULES=1
181The installed modules will be stripped of debug info. The kernel will
182be left with debug info intact.
183.El
184.Pp
185Backup copies of the kernel and modules are automatically stripped of
186their debug information by
187.Xr objcopy 1 .
188.Sh FILES
189.Bl -tag -width ".It Pa /sys/platform/ Ns Va PLATFORM Ns Pa /conf/Makefile" -compact
190.It Pa /sys/conf/files
191list of common files system is built from
192.It Pa /sys/config/ Ns Ar SYSTEM_NAME
193default location for kernel configuration file
194.It Pa /sys/config/GENERIC
195default
196.Sy i386
197kernel configuration file
198.It Pa /sys/config/LINT
199kernel configuration file for checking all the sources,
200includes description of kernel configuration options
201.It Pa /sys/config/SOEKRIS
202kernel configuration file for the
203.Tn Soekris Engineering net5501
204board
205.It Pa /sys/config/VKERNEL
206default 32 bit
207.Xr vkernel 7
208kernel configuration file
209.It Pa /sys/config/VKERNEL64
210default 64 bit
211.Xr vkernel 7
212kernel configuration file
213.It Pa /sys/config/X86_64_GENERIC
214default
215.Sy x86_64
216kernel configuration file
217.It Pa /sys/compile/ Ns Ar SYSTEM_NAME
218default kernel build directory for system
219.Ar SYSTEM_NAME
220.It Pa /sys/platform/ Ns Va PLATFORM Ns Pa /conf/Makefile
221generic makefile for the
222.Va PLATFORM
223.It Pa /sys/platform/ Ns Va PLATFORM Ns Pa /conf/files
224list of
225.Va PLATFORM
226specific files
227.El
228.Sh SEE ALSO
229.Xr gprof 1 ,
230.Xr kgdb 1 ,
231.Xr make 1 ,
232.Xr kernconf 5 ,
233.Xr build 7 ,
234.Xr vkernel 7 ,
235.Xr kgmon 8
236.Pp
237The
238.Sx SYNOPSIS
239portion of each device in section 4.
240.Rs
241.%T "Building 4.3 BSD UNIX System with Config"
242.Re
243.Sh HISTORY
244The
245.Nm
246utility appeared in
247.Bx 4.1 .
248.Sh BUGS
249The line numbers reported in error messages are usually off by one.
250