Merge tag 'vfio-v5.19-rc1' of https://github.com/awilliam/linux-vfio
[linux-2.6-microblaze.git] / Documentation / process / changes.rst
1 .. _changes:
2
3 Minimal requirements to compile the Kernel
4 ++++++++++++++++++++++++++++++++++++++++++
5
6 Intro
7 =====
8
9 This document is designed to provide a list of the minimum levels of
10 software necessary to run the current kernel version.
11
12 This document is originally based on my "Changes" file for 2.0.x kernels
13 and therefore owes credit to the same people as that file (Jared Mauch,
14 Axel Boldt, Alessandro Sigala, and countless other users all over the
15 'net).
16
17 Current Minimal Requirements
18 ****************************
19
20 Upgrade to at **least** these software revisions before thinking you've
21 encountered a bug!  If you're unsure what version you're currently
22 running, the suggested command should tell you.
23
24 Again, keep in mind that this list assumes you are already functionally
25 running a Linux kernel.  Also, not all tools are necessary on all
26 systems; obviously, if you don't have any PC Card hardware, for example,
27 you probably needn't concern yourself with pcmciautils.
28
29 ====================== ===============  ========================================
30         Program        Minimal version       Command to check the version
31 ====================== ===============  ========================================
32 GNU C                  5.1              gcc --version
33 Clang/LLVM (optional)  11.0.0           clang --version
34 GNU make               3.81             make --version
35 binutils               2.23             ld -v
36 flex                   2.5.35           flex --version
37 bison                  2.0              bison --version
38 pahole                 1.16             pahole --version
39 util-linux             2.10o            fdformat --version
40 kmod                   13               depmod -V
41 e2fsprogs              1.41.4           e2fsck -V
42 jfsutils               1.1.3            fsck.jfs -V
43 reiserfsprogs          3.6.3            reiserfsck -V
44 xfsprogs               2.6.0            xfs_db -V
45 squashfs-tools         4.0              mksquashfs -version
46 btrfs-progs            0.18             btrfsck
47 pcmciautils            004              pccardctl -V
48 quota-tools            3.09             quota -V
49 PPP                    2.4.0            pppd --version
50 nfs-utils              1.0.5            showmount --version
51 procps                 3.2.0            ps --version
52 udev                   081              udevd --version
53 grub                   0.93             grub --version || grub-install --version
54 mcelog                 0.6              mcelog --version
55 iptables               1.4.2            iptables -V
56 openssl & libcrypto    1.0.0            openssl version
57 bc                     1.06.95          bc --version
58 Sphinx\ [#f1]_         1.7              sphinx-build --version
59 cpio                   any              cpio --version
60 ====================== ===============  ========================================
61
62 .. [#f1] Sphinx is needed only to build the Kernel documentation
63
64 Kernel compilation
65 ******************
66
67 GCC
68 ---
69
70 The gcc version requirements may vary depending on the type of CPU in your
71 computer.
72
73 Clang/LLVM (optional)
74 ---------------------
75
76 The latest formal release of clang and LLVM utils (according to
77 `releases.llvm.org <https://releases.llvm.org>`_) are supported for building
78 kernels. Older releases aren't guaranteed to work, and we may drop workarounds
79 from the kernel that were used to support older versions. Please see additional
80 docs on :ref:`Building Linux with Clang/LLVM <kbuild_llvm>`.
81
82 Make
83 ----
84
85 You will need GNU make 3.81 or later to build the kernel.
86
87 Binutils
88 --------
89
90 Binutils 2.23 or newer is needed to build the kernel.
91
92 pkg-config
93 ----------
94
95 The build system, as of 4.18, requires pkg-config to check for installed
96 kconfig tools and to determine flags settings for use in
97 'make {g,x}config'.  Previously pkg-config was being used but not
98 verified or documented.
99
100 Flex
101 ----
102
103 Since Linux 4.16, the build system generates lexical analyzers
104 during build.  This requires flex 2.5.35 or later.
105
106
107 Bison
108 -----
109
110 Since Linux 4.16, the build system generates parsers
111 during build.  This requires bison 2.0 or later.
112
113 pahole:
114 -------
115
116 Since Linux 5.2, if CONFIG_DEBUG_INFO_BTF is selected, the build system
117 generates BTF (BPF Type Format) from DWARF in vmlinux, a bit later from kernel
118 modules as well.  This requires pahole v1.16 or later.
119
120 It is found in the 'dwarves' or 'pahole' distro packages or from
121 https://fedorapeople.org/~acme/dwarves/.
122
123 Perl
124 ----
125
126 You will need perl 5 and the following modules: ``Getopt::Long``,
127 ``Getopt::Std``, ``File::Basename``, and ``File::Find`` to build the kernel.
128
129 BC
130 --
131
132 You will need bc to build kernels 3.10 and higher
133
134
135 OpenSSL
136 -------
137
138 Module signing and external certificate handling use the OpenSSL program and
139 crypto library to do key creation and signature generation.
140
141 You will need openssl to build kernels 3.7 and higher if module signing is
142 enabled.  You will also need openssl development packages to build kernels 4.3
143 and higher.
144
145
146 System utilities
147 ****************
148
149 Architectural changes
150 ---------------------
151
152 DevFS has been obsoleted in favour of udev
153 (https://www.kernel.org/pub/linux/utils/kernel/hotplug/)
154
155 32-bit UID support is now in place.  Have fun!
156
157 Linux documentation for functions is transitioning to inline
158 documentation via specially-formatted comments near their
159 definitions in the source.  These comments can be combined with ReST
160 files the Documentation/ directory to make enriched documentation, which can
161 then be converted to PostScript, HTML, LaTex, ePUB and PDF files.
162 In order to convert from ReST format to a format of your choice, you'll need
163 Sphinx.
164
165 Util-linux
166 ----------
167
168 New versions of util-linux provide ``fdisk`` support for larger disks,
169 support new options to mount, recognize more supported partition
170 types, have a fdformat which works with 2.4 kernels, and similar goodies.
171 You'll probably want to upgrade.
172
173 Ksymoops
174 --------
175
176 If the unthinkable happens and your kernel oopses, you may need the
177 ksymoops tool to decode it, but in most cases you don't.
178 It is generally preferred to build the kernel with ``CONFIG_KALLSYMS`` so
179 that it produces readable dumps that can be used as-is (this also
180 produces better output than ksymoops).  If for some reason your kernel
181 is not build with ``CONFIG_KALLSYMS`` and you have no way to rebuild and
182 reproduce the Oops with that option, then you can still decode that Oops
183 with ksymoops.
184
185 Mkinitrd
186 --------
187
188 These changes to the ``/lib/modules`` file tree layout also require that
189 mkinitrd be upgraded.
190
191 E2fsprogs
192 ---------
193
194 The latest version of ``e2fsprogs`` fixes several bugs in fsck and
195 debugfs.  Obviously, it's a good idea to upgrade.
196
197 JFSutils
198 --------
199
200 The ``jfsutils`` package contains the utilities for the file system.
201 The following utilities are available:
202
203 - ``fsck.jfs`` - initiate replay of the transaction log, and check
204   and repair a JFS formatted partition.
205
206 - ``mkfs.jfs`` - create a JFS formatted partition.
207
208 - other file system utilities are also available in this package.
209
210 Reiserfsprogs
211 -------------
212
213 The reiserfsprogs package should be used for reiserfs-3.6.x
214 (Linux kernels 2.4.x). It is a combined package and contains working
215 versions of ``mkreiserfs``, ``resize_reiserfs``, ``debugreiserfs`` and
216 ``reiserfsck``. These utils work on both i386 and alpha platforms.
217
218 Xfsprogs
219 --------
220
221 The latest version of ``xfsprogs`` contains ``mkfs.xfs``, ``xfs_db``, and the
222 ``xfs_repair`` utilities, among others, for the XFS filesystem.  It is
223 architecture independent and any version from 2.0.0 onward should
224 work correctly with this version of the XFS kernel code (2.6.0 or
225 later is recommended, due to some significant improvements).
226
227 PCMCIAutils
228 -----------
229
230 PCMCIAutils replaces ``pcmcia-cs``. It properly sets up
231 PCMCIA sockets at system startup and loads the appropriate modules
232 for 16-bit PCMCIA devices if the kernel is modularized and the hotplug
233 subsystem is used.
234
235 Quota-tools
236 -----------
237
238 Support for 32 bit uid's and gid's is required if you want to use
239 the newer version 2 quota format.  Quota-tools version 3.07 and
240 newer has this support.  Use the recommended version or newer
241 from the table above.
242
243 Intel IA32 microcode
244 --------------------
245
246 A driver has been added to allow updating of Intel IA32 microcode,
247 accessible as a normal (misc) character device.  If you are not using
248 udev you may need to::
249
250   mkdir /dev/cpu
251   mknod /dev/cpu/microcode c 10 184
252   chmod 0644 /dev/cpu/microcode
253
254 as root before you can use this.  You'll probably also want to
255 get the user-space microcode_ctl utility to use with this.
256
257 udev
258 ----
259
260 ``udev`` is a userspace application for populating ``/dev`` dynamically with
261 only entries for devices actually present. ``udev`` replaces the basic
262 functionality of devfs, while allowing persistent device naming for
263 devices.
264
265 FUSE
266 ----
267
268 Needs libfuse 2.4.0 or later.  Absolute minimum is 2.3.0 but mount
269 options ``direct_io`` and ``kernel_cache`` won't work.
270
271 Networking
272 **********
273
274 General changes
275 ---------------
276
277 If you have advanced network configuration needs, you should probably
278 consider using the network tools from ip-route2.
279
280 Packet Filter / NAT
281 -------------------
282 The packet filtering and NAT code uses the same tools like the previous 2.4.x
283 kernel series (iptables).  It still includes backwards-compatibility modules
284 for 2.2.x-style ipchains and 2.0.x-style ipfwadm.
285
286 PPP
287 ---
288
289 The PPP driver has been restructured to support multilink and to
290 enable it to operate over diverse media layers.  If you use PPP,
291 upgrade pppd to at least 2.4.0.
292
293 If you are not using udev, you must have the device file /dev/ppp
294 which can be made by::
295
296   mknod /dev/ppp c 108 0
297
298 as root.
299
300 NFS-utils
301 ---------
302
303 In ancient (2.4 and earlier) kernels, the nfs server needed to know
304 about any client that expected to be able to access files via NFS.  This
305 information would be given to the kernel by ``mountd`` when the client
306 mounted the filesystem, or by ``exportfs`` at system startup.  exportfs
307 would take information about active clients from ``/var/lib/nfs/rmtab``.
308
309 This approach is quite fragile as it depends on rmtab being correct
310 which is not always easy, particularly when trying to implement
311 fail-over.  Even when the system is working well, ``rmtab`` suffers from
312 getting lots of old entries that never get removed.
313
314 With modern kernels we have the option of having the kernel tell mountd
315 when it gets a request from an unknown host, and mountd can give
316 appropriate export information to the kernel.  This removes the
317 dependency on ``rmtab`` and means that the kernel only needs to know about
318 currently active clients.
319
320 To enable this new functionality, you need to::
321
322   mount -t nfsd nfsd /proc/fs/nfsd
323
324 before running exportfs or mountd.  It is recommended that all NFS
325 services be protected from the internet-at-large by a firewall where
326 that is possible.
327
328 mcelog
329 ------
330
331 On x86 kernels the mcelog utility is needed to process and log machine check
332 events when ``CONFIG_X86_MCE`` is enabled. Machine check events are errors
333 reported by the CPU. Processing them is strongly encouraged.
334
335 Kernel documentation
336 ********************
337
338 Sphinx
339 ------
340
341 Please see :ref:`sphinx_install` in :ref:`Documentation/doc-guide/sphinx.rst <sphinxdoc>`
342 for details about Sphinx requirements.
343
344 Getting updated software
345 ========================
346
347 Kernel compilation
348 ******************
349
350 gcc
351 ---
352
353 - <ftp://ftp.gnu.org/gnu/gcc/>
354
355 Clang/LLVM
356 ----------
357
358 - :ref:`Getting LLVM <getting_llvm>`.
359
360 Make
361 ----
362
363 - <ftp://ftp.gnu.org/gnu/make/>
364
365 Binutils
366 --------
367
368 - <https://www.kernel.org/pub/linux/devel/binutils/>
369
370 Flex
371 ----
372
373 - <https://github.com/westes/flex/releases>
374
375 Bison
376 -----
377
378 - <ftp://ftp.gnu.org/gnu/bison/>
379
380 OpenSSL
381 -------
382
383 - <https://www.openssl.org/>
384
385 System utilities
386 ****************
387
388 Util-linux
389 ----------
390
391 - <https://www.kernel.org/pub/linux/utils/util-linux/>
392
393 Kmod
394 ----
395
396 - <https://www.kernel.org/pub/linux/utils/kernel/kmod/>
397 - <https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git>
398
399 Ksymoops
400 --------
401
402 - <https://www.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/>
403
404 Mkinitrd
405 --------
406
407 - <https://code.launchpad.net/initrd-tools/main>
408
409 E2fsprogs
410 ---------
411
412 - <https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/>
413 - <https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/>
414
415 JFSutils
416 --------
417
418 - <http://jfs.sourceforge.net/>
419
420 Reiserfsprogs
421 -------------
422
423 - <https://git.kernel.org/pub/scm/linux/kernel/git/jeffm/reiserfsprogs.git/>
424
425 Xfsprogs
426 --------
427
428 - <https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git>
429 - <https://www.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/>
430
431 Pcmciautils
432 -----------
433
434 - <https://www.kernel.org/pub/linux/utils/kernel/pcmcia/>
435
436 Quota-tools
437 -----------
438
439 - <http://sourceforge.net/projects/linuxquota/>
440
441
442 Intel P6 microcode
443 ------------------
444
445 - <https://downloadcenter.intel.com/>
446
447 udev
448 ----
449
450 - <https://www.freedesktop.org/software/systemd/man/udev.html>
451
452 FUSE
453 ----
454
455 - <https://github.com/libfuse/libfuse/releases>
456
457 mcelog
458 ------
459
460 - <http://www.mcelog.org/>
461
462 cpio
463 ----
464
465 - <https://www.gnu.org/software/cpio/>
466
467 Networking
468 **********
469
470 PPP
471 ---
472
473 - <https://download.samba.org/pub/ppp/>
474 - <https://git.ozlabs.org/?p=ppp.git>
475 - <https://github.com/paulusmack/ppp/>
476
477 NFS-utils
478 ---------
479
480 - <http://sourceforge.net/project/showfiles.php?group_id=14>
481
482 Iptables
483 --------
484
485 - <https://netfilter.org/projects/iptables/index.html>
486
487 Ip-route2
488 ---------
489
490 - <https://www.kernel.org/pub/linux/utils/net/iproute2/>
491
492 OProfile
493 --------
494
495 - <http://oprofile.sf.net/download/>
496
497 NFS-Utils
498 ---------
499
500 - <http://nfs.sourceforge.net/>
501
502 Kernel documentation
503 ********************
504
505 Sphinx
506 ------
507
508 - <https://www.sphinx-doc.org/>