Make e2fsprogs optional (and off by default)
[genkernel.git] / doc / genkernel.8.txt
1 GENKERNEL(8)
2 ============
3 :man source:   genkernel {genkernelversion}
4 :man manual:   genkernel {genkernelversion}
5
6
7 NAME
8 ----
9 genkernel - the Gentoo Linux automatic kernel compiler.
10
11
12 SYNOPSIS
13 --------
14 *genkernel* [options...] action
15
16
17 INTRODUCTION
18 ------------
19 Genkernel is designed to allow users who are not previously used to
20 compiling a kernel to use a similar setup to that one that is used on
21 the Gentoo LiveCDs which auto-detects your hardware.
22
23 Some users may also be interested in using genkernel for hardware which
24 requires initialization and a working kernel before it can be booted
25 because genkernel also automatically compiles your kernel modules,
26 allowing hardware which needs to be loaded with module parameters to be
27 used.
28
29
30 USAGE
31 -----
32 All that is needed to run genkernel is just `genkernel` with an
33 action and any flags you might need:
34
35 ------------------------------------------
36 # genkernel --menuconfig --no-clean --no-install all
37 ------------------------------------------
38
39 This would produce a kernel, asking you what how to configure it to
40 your desire, leaving alone any existing compiled object files, but not
41 installing anything.
42
43
44 ACTIONS
45 -------
46 An action tells genkernel what you want it to do  -  the following
47 actions are supported:
48
49 *all*::
50     Build all steps - the kernel, modules, and the ramdisk.
51 *bzImage*::
52     Build only the kernel.
53 *initramfs*::
54     Build only the ramdisk/initramfs.
55 *kernel*::
56     Build only the kernel and the modules.
57 *ramdisk*::
58     Build only the ramdisk/initramfs.
59
60
61 OPTIONS
62 -------
63 Genkernel supports the following options which alter its behaviour.
64 Certain options have *--no-* variants which do the opposite thing.
65 You can specify your options in any order.
66
67
68 CONFIGURATION OPTIONS
69 ~~~~~~~~~~~~~~~~~~~~~
70 *--config*=<file>::
71     Genkernel configuration file to use
72
73
74 DEBUGGING OPTIONS
75 ~~~~~~~~~~~~~~~~~
76 *--loglevel*=<0-5>::
77     This controls the out verbosity level of genkernel output - if
78     this is set to 0, minimal debugging is done; if this is set to 5
79     as much output as possible is given.
80
81 *--logfile*=<outfile>::
82     This outputs debugging data to the file <outfile>. By default
83     this is '/var/log/genkernel.log'.
84
85 *--*[*no-*]*color*::
86     Turns on, or off, output in color using escape sequences.
87
88
89 KERNEL CONFIGURATION
90 ~~~~~~~~~~~~~~~~~~~~
91 *--*[*no-*]*menuconfig*::
92     Runs, or does not run "make menuconfig" after running "make oldconfig".
93
94 *--*[*no-*]*save-config*::
95     Saves, or does not save the kernel configuration to '/etc/kernels'
96     if the kernel is successfully compiled.
97
98 *--*[*no-*]*gconfig*::
99     Runs, or does not run "make gconfig" after "make oldconfig".
100
101 *--*[*no-*]*xconfig*::
102     Runs, or does not run "make xconfig" after "make oldconfig".
103
104
105 KERNEL COMPILATION
106 ~~~~~~~~~~~~~~~~~~
107 *--*[*no-*]*clean*::
108     Runs, or does not run, "make clean" before compilation  -  this
109     erases any compiled object files in the kernel source tree but
110     does not have an impact on the kernel configuration.  Specifying
111     *--no-clean* implies *--no-mrproper*.
112
113 *--*[*no-*]*mrproper*::
114     Runs, or does not run, "make mrproper" before compilation - this
115     erases both any compiled object files in the kernel source tree
116     as well as the kernel configuration.
117
118 *--*[*no-*]*install*::
119     Installs,  or does not install the kernel to '/boot' after building.
120     The default is  *--install*.   If MOUNTBOOT is set in
121     '/etc/genkernel.conf'  then '/boot' will be automatically mounted if
122     it is not already mounted before the ramdisk and kernel images
123     are copied over.
124
125 *--*[*no-*]*symlink*::
126     Manages,  or does not manage, symlinks in '/boot' like the manual
127     kernel "make install" process does. A kernel (or,  depending on
128     options,  kernelz)  symlink will link to the most recently built
129     kernel image and a kernel.old (or kernelz.old) symlink will link
130     to the second most recently built image, if one exists.  Similar
131     symlinks (both * and *.old) are managed for initramfs and System.map.
132     The corresponding work products (i.e., the actual kernel
133     and initramfs images, and System.map) are also managed accordingly.
134     NOTE: Specifying   *--symlink*  does nothing unless
135     *--install* is also specified.
136
137 *--oldconfig*::
138     Implies *--no-clean*, and thus *--no-mrproper*, running a "make oldconfig".
139
140 *--*[*no-*]*splash*::
141     Installs, or not, framebuffer splash support into initramfs.
142
143 *--*[*no-*]*ramdisk-modules*::
144     Copies or does not copy configured modules to the ramdisk.
145
146 *--*[*no-*]*all-ramdisk-modules*::
147     Copies or does not copy all kernel modules to the initrd.
148
149 *--callback*=<...>::
150     Run the specified arguments in the current environment after the
151     kernel and modules have been compiled.
152
153 *--*[*no-*]*static*::
154         Builds, or does not build a monolithic kernel without any modules on any
155         initial ramdisks.
156
157
158 KERNEL LOCATIONS
159 ~~~~~~~~~~~~~~~~
160 *--kerneldir*=<dir>::
161     This specifies the location of the kernel sources;  the default
162     is '/usr/src/linux'.
163
164 *--kernel-config*=<file>::
165     This specifies a kernel configuration file to use for compilation;
166     by default genkernel uses the config from the previous
167     build of the same kernel version or a default kernel config if
168     there isn't a previous config.
169
170 *--module-prefix*=<dir>::
171     Prefix to kernel module destination, modules will be installed in
172     '<prefix>/lib/modules'.
173
174
175 LOW-LEVEL COMPILATION OPTIONS
176 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
177 *--kernel-cc*=<compiler>::
178     Compiler to use for the kernel compilation (e.g. distcc).
179
180 *--kernel-as*=<assembler>::
181     Assembler to use for the kernel compilation.
182
183 *--kernel-ld*=<linker>::
184     Linker to use for the kernel compilation.
185
186 *--kernel-cross-compile*=<cross var>::
187     CROSS_COMPILE kernel variable.
188
189 *--kernel-make*=<makeprg>::
190     GNU Make to use for the kernel compilation.
191
192 *--kernel-target*=<t>::
193     Override default make target (bzImage), note that values
194     like *--kernel-target=* are also valid (useful for Xen
195     based kernel sources)
196
197 *--kernel-binary*=<path>::
198     Override default kernel binary path (arch/foo/boot/bar)
199
200 *--utils-cc*=<compiler>::
201     Compiler to use for utilities.
202
203 *--utils-as*=<assembler>::
204     Assembler to use for utilities.
205
206 *--utils-ld*=<linker>::
207     Linker to use for utilities.
208
209 *--utils-make*=<makeprog>::
210     GNU Make to use for utilities.
211
212 *--utils-cross-compile*=<cross var>::
213     CROSS_COMPILE utils variable.
214
215 *--utils-arch*=<arch>::
216     Force to arch for utils only instead of autodetect.
217
218 *--*[*no-*]*mountboot*::
219     Mount, or not, BOOTDIR automatically if mountable.
220
221 *--bootdir*=<dir>::
222     Set the location of the boot-directory, default is '/boot'.
223
224 *--modprobedir*=<dir>::
225     Set the location of the modprobe.d-directory, default is '/etc/modprobe.d'.
226
227 *--makeopts*=<makeopts>::
228     GNU Make options such as -j2, etc.
229
230
231 INITIALIZATION
232 ~~~~~~~~~~~~~~
233 *--splash*=<theme>::
234     Enable framebuffer splash using <theme>.
235
236 *--splash-res*=<resolutions>::
237     Select gensplash resolutions to include.
238
239 *--*[*no-*]*splash*=<theme>::
240     If the extra argument is specified,  splash is forced using
241     <theme>  rather than the default theme specified in your splash
242     configuration. If *--no-splash* is specified, then splash is disabled.
243
244 *--do-keymap-auto*::
245     Force keymap selection at boot.
246
247 *--*[*no-*]*keymap*::
248     Enables or disables keymap selection at boot.
249
250 *--*[*no-*]*lvm*::
251         Adds or skips in LVM support from static binaries if they exist on the
252         system,  or compile static LVM binaries if static ones do not exist.
253
254 *--*[*no-*]*mdadm*::
255     Includes or excludes mdadm/mdmon support.
256     Without sys-fs/mdadm[static] installed, this will compile mdadm for you.
257
258 *--mdadm-config*=<file>::
259     Use <file> as configfile for MDADM.
260     By default the ramdisk will be built *without* an mdadm.conf and
261     will auto-detect arrays during boot-up.
262
263 *--*[*no-*]*dmraid*::
264     Includes or excludes DMRAID support.
265
266 *--*[*no-*]*e2fsprogs*::
267     Includes or excludes e2fsprogs.
268
269 *--*[*no-*]*zfs*::
270     Includes or excludes ZFS support.
271
272 *--*[*no-*]*multipath*::
273     Includes or excludes Multipath support
274
275 *--*[*no-*]*iscsi*::
276     Includes or excludes iSCSI support
277
278 *--bootloader*=*grub*::
279     Add new kernel to GRUB configuration.
280
281 *--linuxrc*=<file>::
282     Use <file> for the linuxrc instead of the genkernel linuxrc.
283
284 *--busybox-config*=<file>::
285     Specifies a user created busybox config.
286
287 *--genzimage*::
288         Make and install kernelz image from 'arch/powerpc/boot/zImage.initrd'.
289
290 *--*[*no-*]*disklabel*::
291     Includes or excludes disk label and uuid support in your initrd.
292
293 *--*[*no-*]*luks*::
294         Includes or excludes Luks support from static binaries if they exist on
295         the system.
296
297 *--*[*no-*]*gpg*::
298         Includes or excludes support for GnuPG 1.x, the portable standalone branch
299         of GnuPG. A key can be made from
300     `gpg --symmetric -o /path/to/LUKS-key.gpg /path/to/LUKS-key` .
301     After that, re-point the *root_key* argument to the new .gpg file.
302
303 *--*[*no-*]*busybox*::
304     Includes or excludes busybox in the initrd or initramfs.
305
306 *--*[*no-*]*unionfs*::
307     Includes or excludes support for unionfs
308
309 *--*[*no-*]*netboot*::
310     Creates or does not create a self-contained env in the initramfs
311
312 *--real-root*=<foo>::
313     Specify a default for *real_root*= kernel option.
314
315
316 INTERNALS
317 ~~~~~~~~~
318 *--arch-override*=<arch>::
319     Force the architecture settings described by the <arch>  profile
320     instead of autodetecting the running architecture.
321
322 *--cachedir*=<dir>::
323     Override the default cache location.
324
325 *--tempdir*=<dir>::
326     Sets genkernel's temporary working directory to <dir>.
327
328 *--*[*no-*]*postclear*::
329         Clears or skips clearing all tmp files and caches after genkernel has run.
330
331
332 OUTPUT SETTINGS
333 ~~~~~~~~~~~~~~~
334 *--kernname*=<...>::
335     Tag the kernel and initrd with a name, if not defined this
336     option defaults to genkernel
337
338 *--minkernpackage*=<tbz2>::
339     File to output a .tar.bz2'd kernel and initrd: no modules outside
340     of the initrd will be included...
341
342 *--modulespackage*=<tbz2>::
343     File to output a .tar.bz2'd modules after the callbacks have run
344
345 *--kerncache*=<tbz2>::
346     File to output a .tar.bz2'd kernel, contents of '/lib/modules/'
347     and the kernel config.  NOTE: This is created before the callbacks
348     are run.
349
350 *--*[*no-*]*kernel-sources*::
351     This option is only valid if kerncache is defined If there is a
352     valid kerncache no checks will be made against a kernel source
353     tree.
354
355 *--initramfs-overlay*=<dir>::
356     Directory structure to include in the initramfs, only available
357     on >=2.6 kernels
358
359 *--*[*no-*]*firmware*::
360     Enable or disables copying of firmware into initramfs.
361
362 *--firmware-dir*=<dir>::
363     Specify directory to copy firmware from (defaults to '/lib/firmware').
364
365 *--firmware-files*=<files>::
366     Specifies specific firmware files to copy. This overrides *--firmware-dir*.
367     For multiple files, separate the filenames with a comma.
368
369 *--*[*no-*]*integrated-initramfs*::
370         Builds or does not build the generated initramfs into the kernel instead
371         of keeping it as a separate file.
372
373 *--*[*no-*]*compress-initramfs*, *--*[*no-*]*compress-initrd*::
374         Compresses or does not compress the generated initramfs.
375
376 *--compress-initramfs-type*=<arg>::
377         Compression type for initramfs (best, xz, lzma, bzip2, gzip, lzop).
378         "Best" causes selection of the best available algorithm that is selected
379         in your kernel configuration.
380
381
382 RAMDISK OPTIONS
383 ---------------
384 The following options can be passed as kernel parameters from the bootloader,
385 which the ramdisk scripts would recognize.
386
387 *real_root*=<...>::
388     Specifies the device node of the root filesystem to mount.
389
390 *crypt_root*=<...>::
391     This specifies the device encrypted by Luks, which contains the
392     root filesystem to mount.
393
394 *crypt_swap*=<...>::
395     This specifies the swap device encrypted by Luks.
396
397 *root_key*=<...>::
398     In case your root is encrypted with a key, you can use a device
399     like a  usb pen to store the key.  This value should be the key
400     path relative to the mount point.
401
402 *root_keydev*=<...>::
403     If necessary provide the name of the device that carries the
404     root_key.   If unset while using root_key, it will automatically
405     look for the device in every boot.
406
407 *root_trim*=(yes|no)::
408     Enables TRIM support for a Luks-based root device.  Only useful
409     with SSD setups.  Have a look at 'http://en.wikipedia.org/wiki/TRIM'
410     for more information.
411
412 *swap_key*=<...>::
413     Same as root_key for swap.
414
415 *swap_keydev*=<...>::
416     Same as root_keydev for swap.
417
418 *crypt_silent*::
419     Set this to silent all the output related to the cryptographic
420     software,  and in case your encrypted device isn't open with the
421     key, it opens a shell in the initrd quietly.
422
423 *dodmraid*[=<...>]::
424     Activate Device-Mapper RAID and (optionally) pass arguments to it.
425
426 *real_init*=<...>::
427     Override location of init script, default is "/sbin/init".
428
429 *init_opts*=<...>::
430     Passes arguments to init on bootup.
431
432 *scandelay*[=<...>]::
433     Pauses for 10 seconds before running devfsd if no argument is
434     specified; otherwise pauses for the number of specified seconds.
435
436 *ip*=<...>::
437     Normally used to tell the kernel that it should start a network
438     interface. If present, the initrd will try to mount a  livecd
439     over NFS.
440
441 *nfsroot*=<...>::
442     If present,  the initrd will try to mount a livecd from that
443     location. Otherwise the location will be deduced from the DCHP
444     request (option root-path)
445
446 *dolvm*::
447     Activate LVM volumes on bootup
448
449 *lvmraid*=<...>::
450     Specify RAID devices to set up before the activation of LVM volumes.
451     Implies option *dolvm*.
452
453 *domdadm*::
454     Scan for RAID arrays on bootup
455
456 *dozfs*[=force]::
457     Scan for bootable ZFS pools on bootup. Optionally force import if
458     necessary.
459
460 *doscsi*::
461     Activate SCSI devices on bootup, necessary when SCSI support is
462     compiled as modules and you're using SCSI or SATA devices.
463
464 *noslowusb*::
465     By default genkernel pause for 10 seconds if it finds a attached
466     usb-storage device to give them time to initiate.
467     This option skips that pause.
468
469 *keymap*='MAP'::
470     Set keymap to 'MAP', e.g. *keymap*=de.
471     For valid values of 'MAP' please see
472     '/usr/share/genkernel/defaults/keymaps/'.
473
474 *dokeymap*::
475     Use keymap.  Usage of *keymap*= implies this option, already.
476
477 *rootfstype*=<...>::
478     Specify the file system type to mount the real root filesystem as.
479     This can be useful when support for ext2/ext3/ext4 are
480     in competition.  Default is "auto".
481
482 *docache*::
483 *nocache*::
484     Enables/disables caching of CD contents in RAM.
485
486 *root*=<...>::
487     Omit or specify as "/dev/ram0".
488     For other values be sure to know what you're doing.
489
490 *subdir*=<...>::
491     switch_root into "<CHROOT>/<SUBDIR>" instead of "<CHROOT>/".
492     <CHROOT> is "/newroot" (or "/union") usually.
493
494 *debug*::
495     Drop into a debug shell early in the process.
496
497 *noload*=<...>::
498     List of modules to skip loading.
499     Separate using commas or spaces.
500
501 *nodetect*::
502     Skipping scanning modules using "modprobe <MODULE> -n".
503     Use *doload=* for specifying a whitelist of exceptions.
504
505 *doload*=<...>::
506     List of modules to load despite *nodetect*.
507
508 *domodules*::
509 *nomodules*::
510     Enables/disables loading of modules in general.
511
512 *CONSOLE*=<...>::
513 *console*=<...>::
514     Override location of console, default is "/dev/console".
515
516 *part*=<...>::
517     Specify part for mdadm to start.  This is the relevant code in mdstart:
518 ------------------------------------------
519     fd = open("/dev/md<MD_NUMBER>", 0, 0);
520     ioctl(fd, RAID_AUTORUN, <MDPART>);
521 ------------------------------------------
522
523 *iscsi_initiatorname*=<...>::
524 *iscsi_target*=<...>::
525 *iscsi_tgpt*=<...>::
526 *iscsi_address*=<...>::
527 *iscsi_port*=<...>::
528 *iscsi_username*=<...>::
529 *iscsi_password*=<...>::
530 *iscsi_username_in*=<...>::
531 *iscsi_password_in*=<...>::
532 *iscsi_debug*=<...>::
533 *iscsi_noibft*::
534     Specify iSCSI parameters.
535
536 *unionfs*::
537 *nounionfs*::
538     Enables/disables UnionFS.
539
540 *aufs*::
541     Enables support for AUFS2 (if available in the kernel).
542
543 *real_rootflags*=<...>::
544     Additional flags to mount the real root system with.
545     For example *real_rootflags*=noatime would make "-o ro,noatime".
546
547 *real_resume*=<...>::
548 *resume*=<...>::
549 *noresume*::
550     TO BE DOCUMENTED
551
552 *cdroot*[=<...>]::
553 *cdroot_type*=<...>::
554     TO BE DOCUMENTED
555
556 *loop*=<...>::
557 *looptype*=<...>::
558     TO BE DOCUMENTED
559
560 *isoboot*=<...>::
561     Loop-mount an ISO file from the boot device to get the filesystem image.
562     Useful with chain-loading environments and USB keys.
563
564
565 NETBOOTING
566 ----------
567 The initrd scripts have limited support for network booting.   This is
568 activated if the *ip*=<...> kernel parameter was given. Please refer to
569 the genkernel guide at 'http://www.gentoo.org/doc/en/genkernel.xml' for
570 more information.
571
572 The initrd scripts will extract any *.tar.gz files found in the '/add'
573 directory of the livecd into the root filesystem during boot. This way
574 it is easy to extend a netbooted LiveCD i.e. add custom tools, or other
575 kernel modules.
576
577
578 REPORTING BUGS
579 --------------
580 If you believe you have found a bug in the genkernel scripts,  then
581 please file a bug on the Gentoo Linux Bugzilla against product
582 "Gentoo Hosted Projects" component "genkernel", i.e. at
583 'https://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Hosted%20Projects&component=genkernel'.
584
585 If you're somewhat unsure if you hit a bug or not, file a bug an we'll find out together.
586 For general questions the is the gentoo-genkernel mailing list.  You can join the list
587 by sending empty mail to 'gentoo-genkernel+subscribe@lists.gentoo.org'.
588
589 We cannot assist you with
590 kernel compilation failures unless they are caused by a genkernel bug.
591
592 Kernel issues for Gentoo-supported kernels, including compilation failures
593 should go to 'https://bugs.gentoo.org/' and should be assigned to 'kernel@gentoo.org'.
594 Please check if an existing bug documents the same
595 issue before opening a new bug. Issues for kernel sources not supported
596 by Gentoo should go to their relevant authors.
597
598
599 AUTHORS
600 -------
601 - Tim Yamin <plasmaroo@gentoo.org>
602 - Eric Edgar <rocket@gentoo.org>
603 - Chris Gianelloni <wolf31o2@gentoo.org>
604 - Sebastian Pipping <sebastian@pipping.org>
605 - NFS Support by Thomas Seiler <thseiler@gmail.com>
606 - GnuPG 1.x integration by dacook <schism@subverted.org>
607 - MDADM integration by Matthias Dahl <ua_bugz_gentoo@mortal-soul.de>
608 - ZFS integration by Richard Yao <ryao@cs.stonybrook.edu>
609
610
611 SEE ALSO
612 --------
613 /etc/genkernel.conf - genkernel configuration file