aboutsummaryrefslogtreecommitdiffstats
path: root/kern.1
blob: e1826f20ba97167d594432e8323646a41ef4b013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.Dd June 4, 2020
.Dt KERN 1
.Os
.Sh NAME
.Nm kern
.Nd configure, build, and install kernels
.Sh SYNOPSIS
.Nm
.Op all
.Nm
.Ic set
.Op Ar kernel
.Nm
.Ic config
.Op Ar host
.Nm
.Ic diff
.Op Ar config
.Nm
.Ic build
.Nm
.Ic install
.Nm
.Ic postinst
.Nm
.Ic clean
.Sh DESCRIPTION
.Nm
is a program for automating the deployment of kernels on Gentoo-based systems.
It is comprised of a set of commands that manage specific tasks related to
building, configuring, and installing kernels.
.Pp
Commands that operate directly on the kernel sources need to be launched from
within the source tree directory, usually
.Pa /usr/src/linux .
Specifically, those commands are
.Em config ,
.Em diff ,
.Em build ,
and
.Em install .
.Pp
.Nm
uses
.Xr sudo 8
internally to launch commands that require superuser permissions.
Care was taken to minimize the amount of privilege escalation.
Particularly, the
.Em build
command does not build the kernel with superuser permissions, as the
.Em set
command changes the owner of the kernel source tree to the user invoking
.Nm .
.Pp
Throughout this manual, the
.Dq selected kernel
refers to the kernel source tree that is referenced by the
.Pa /usr/src/linux
symbolic link.
In other words, the
.Dq selected kernel
is the currently selected kernel as reported by
.Xr kernel.eselect 5 .
.Pp
The commands are as follows:
.Bl -tag -width Ds
.It Sy all
Changes the current directory to
.Pa /usr/src/linux
and runs the whole suite of commands in order.
.Pp
This command additionally prompts the user for confirmation if the
generated configuration file differs from the one used by the running
kernel.
.It Sy set Op Ar kernel
Sets the selected kernel to
.Em kernel .
This command uses
.Xr eselect 1 ,
particularly its
.Xr kernel.eselect 5
backend to achieve this.
The
.Em kernel
argument can be any kernel name understood by that backend, for example
.Sq linux-5.4.36-gentoo .
.Pp
If no kernel is given, this command determines the latest available kernel automatically.
.It Sy config Op Ar template
Configures the kernel using the base
template and the given
.Xr kernfrag 7
.Em template .
.Pp
If no template is given, this command uses the output of
.Xr hostname 1
as the template name.
.It Sy diff Op Ar config
Uses
.Xr git-diff 1
if available, otherwise
.Xr diff 1
to display the differences between the generated kernel configuration and
.Em config .
.Pp
If no config is given, this command compares against the configuration of the currently
running kernel.
This requires the configuration file to be present under
.Pa /boot .
.It Sy build
Builds the selected kernel.
.It Sy install
Installs the selected kernel.
.Pp
This command mounts
.Pa /boot
if it is a separate partition and not already mounted.
.It Sy postinst
Runs any relevant post-installation jobs.
Currently this calls
.Xr emerge 1
with
.Em @module-rebuild .
.It Sy clean
Uses
.Em eclean-kernel
to remove obsolete kernels.
.El
.Pp
If no command is given, assume
.Em all .
.Sh FILES
.Bl -tag -width Ds
.It Pa /usr/src/linux
A symbolic link pointing to the directory that contains the kernel source tree.
.It Pa /etc/kernfrag
The directory containing the
.Xr kernfrag 7
tree.
.El
.Sh SEE ALSO
.Xr emerge 1 ,
.Xr eselect 1 ,
.Xr kernfrag 7
.Sh AUTHORS
.An -nosplit
.Nm
was written by
.An Wolfgang Müller Aq Mt wolf@oriole.systems