]>
Commit | Line | Data |
---|---|---|
a4d36b4a MT |
1 | # PUT YOUR CONFIG HERE OR IN separate files named *.conf |
2 | # in /etc/dracut.conf.d | |
3 | # SEE man dracut.conf(5) | |
41c0d0ca | 4 | |
a4d36b4a MT |
5 | # Sample dracut config file |
6 | ||
7 | #logfile=/var/log/dracut.log | |
8 | #fileloglvl=6 | |
9 | ||
10 | # Exact list of dracut modules to use. Modules not listed here are not going | |
11 | # to be included. If you only want to add some optional modules use | |
12 | # add_dracutmodules option instead. | |
41c0d0ca MT |
13 | #dracutmodules+="" |
14 | ||
a4d36b4a | 15 | # dracut modules to omit |
41c0d0ca MT |
16 | #omit_dracutmodules+="" |
17 | ||
a4d36b4a | 18 | # dracut modules to add to the default |
41c0d0ca MT |
19 | #add_dracutmodules+="" |
20 | ||
21 | # additional kernel modules to the default | |
22 | #add_drivers+="" | |
23 | ||
a760a5cf AF |
24 | # skip kernel modules (marvell sdio and compat from backports) |
25 | omit_drivers+="libertas libertas_sdio mwifiex mwifiex_sdio compat" | |
26 | ||
41c0d0ca | 27 | # list of kernel filesystem modules to be included in the generic initramfs |
a4d36b4a | 28 | filesystems+="reiserfs vfat xfs" |
41c0d0ca MT |
29 | |
30 | # build initrd only to boot current hardware | |
31 | #hostonly="yes" | |
32 | # | |
33 | ||
b403b04a AF |
34 | # Load microcode for the CPU early |
35 | early_microcode=yes | |
36 | ||
41c0d0ca | 37 | # install local /etc/mdadm.conf |
a4d36b4a | 38 | #mdadmconf="no" |
41c0d0ca MT |
39 | |
40 | # install local /etc/lvm/lvm.conf | |
a4d36b4a MT |
41 | #lvmconf="no" |
42 | ||
43 | # A list of fsck tools to install. If it's not specified, module's hardcoded | |
44 | # default is used, currently: "umount mount /sbin/fsck* xfs_db xfs_check | |
45 | # xfs_repair e2fsck jfs_fsck reiserfsck btrfsck". The installation is | |
46 | # opportunistic, so non-existing tools are just ignored. | |
47 | #fscks="" | |
48 | ||
49 | # inhibit installation of any fsck tools | |
50 | #nofscks="yes" | |
51 | ||
52 | # mount / and /usr read-only by default | |
53 | #ro_mnt="no" | |
54 | ||
55 | # set the directory for temporary files | |
56 | # default: /var/tmp | |
57 | #tmpdir=/tmp |