xref: /dragonfly/usr.sbin/config/config.8 (revision 5c694678)
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. 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: src/usr.sbin/config/config.8,v 1.21.2.7 2003/04/23 07:32:39 brueffer Exp $
30.\"
31.Dd January 5, 2019
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 gr
40.Op Fl d Ar destdir
41.Ar SYSTEM_NAME
42.Sh DESCRIPTION
43The
44.Nm
45utility builds a set of system configuration files from the file
46.Ar SYSTEM_NAME
47which describes
48the system to configure.
49A second file
50tells
51.Nm
52what files are needed to generate a system and
53can be augmented by configuration specific set of files
54that give alternate files for a specific machine
55(see the
56.Sx FILES
57section below).
58.Pp
59Available options and operands:
60.Bl -tag -width ".Ar SYSTEM_NAME"
61.It Fl d Ar destdir
62Use
63.Ar destdir
64as the output directory, instead of the default one.
65Note that
66.Nm
67does not append
68.Ar SYSTEM_NAME
69to the directory given.
70.It Fl g
71Configure a system for debugging.
72.It Fl r
73Remove the old compile directory (see below).
74.It Ar SYSTEM_NAME
75Specify the name of the system configuration file
76containing device specifications, configuration options
77and other system parameters for one system configuration.
78.El
79.Pp
80.Nm
81should be run from the
82.Pa config
83subdirectory of the system source (usually
84.Pa /sys/config ) .
85.Nm
86creates the directory
87.Pa ../compile/ Ns Ar SYSTEM_NAME
88or the one given with the
89.Fl d
90option
91as necessary and places all output files there.
92If the output directory already exists and the
93.Fl r
94flag was specified, it will be removed first.
95The output of
96.Nm
97consists of a number of files; for the
98.Tn x86_64
99architecture, they are:
100.Pa ioconf.c ,
101a description
102of what I/O devices are attached to the system;
103.Pa Makefile ,
104used by
105.Xr make 1
106in building the system;
107header files,
108definitions of
109the number of various devices that will be compiled into the system.
110.Pp
111After running
112.Nm ,
113it is necessary to run
114.Dq Li make depend
115in the directory where the new makefile
116was created.
117.Pp
118If any other error messages are produced by
119.Nm ,
120the problems in the configuration file should be corrected and
121.Nm
122should be run again.
123Attempts to compile a system that had configuration errors
124are likely to fail.
125.Pp
126If the
127.Cd "options INCLUDE_CONFIG_FILE"
128is used in the configuration file the
129entire input file is embedded in the new kernel.
130This means that
131.Xr strings 1
132can be used to extract it from a kernel:
133to extract the configuration information, use the command
134.Pp
135.Dl "strings -n 3 kernel | sed -n 's/^___//p'"
136.Sh DEBUG KERNELS
137Traditional
138.Bx
139kernels are compiled without symbols due to the heavy load on the
140system when compiling a
141.Dq debug
142kernel.
143A debug kernel contains complete symbols for all the source files, and
144enables an experienced kernel programmer to analyse the cause of a problem.
145The
146debuggers available prior to
147.Bx 4.4 Lite
148were able to find some information
149from a normal kernel;
150.Xr kgdb 1
151provides very little support for normal kernels, and a debug kernel is needed
152for any meaningful analysis.
153.Pp
154In order to ease posting bug reports for inexperienced users and
155make the debugging environment more uniform,
156.Dx
157installs kernel and modules unstripped.
158Debug information is not loaded into memory, so the only impact is
159a growth in root file-system consumption by 60MB.
160Those wishing to install stripped down kernel and modules can specify two new
161makeoptions in their kernel config file or when they run the
162kernel-related targets to make:
163.Bl -tag -width ".Va INSTALLSTRIPPEDMODULES=1"
164.It Va INSTALLSTRIPPED=1
165The installed kernel and modules will be stripped of debug info.
166.It Va INSTALLSTRIPPEDMODULES=1
167The installed modules will be stripped of debug info. The kernel will
168be left with debug info intact.
169.El
170.Pp
171Backup copies of the kernel and modules are automatically stripped of
172their debug information by
173.Xr objcopy 1 ,
174unless
175.Va NO_KERNEL_OLD_STRIP
176is set in
177.Xr make.conf 5 .
178.Sh FILES
179.Bl -tag -width "/sys/platform/PLATFORM/conf/Makefile"
180.It Pa /sys/conf/files
181list of common files system is built from
182.It Pa /sys/config/ Ns Ar SYSTEM_NAME
183default location for kernel configuration file
184.It Pa /sys/config/LINT64
185kernel configuration file for checking all the sources,
186includes description of kernel configuration options
187.It Pa /sys/config/VKERNEL64
188default 64 bit
189.Xr vkernel 7
190kernel configuration file
191.It Pa /sys/config/X86_64_GENERIC
192default
193.Sy x86_64
194kernel configuration file
195.It Pa /sys/compile/ Ns Ar SYSTEM_NAME
196default kernel build directory for system
197.Ar SYSTEM_NAME
198.It Pa /sys/platform/ Ns Va PLATFORM Ns Pa /conf/Makefile
199generic makefile for the
200.Va PLATFORM
201.It Pa /sys/platform/ Ns Va PLATFORM Ns Pa /conf/files
202list of
203.Va PLATFORM
204specific files
205.El
206.Sh SEE ALSO
207.Xr gprof 1 ,
208.Xr kgdb 1 ,
209.Xr make 1 ,
210.Xr kernconf 5 ,
211.Xr build 7 ,
212.Xr vkernel 7
213.Pp
214The
215.Sx SYNOPSIS
216portion of each device in section 4.
217.Rs
218.%T "Building 4.3 BSD UNIX System with Config"
219.Re
220.Sh HISTORY
221The
222.Nm
223utility appeared in
224.Bx 4.1 .
225.Sh BUGS
226The line numbers reported in error messages are usually off by one.
227