]> git.ipfire.org Git - thirdparty/dracut.git/blame - dracut.cmdline.7.asc
network: fix carrier detection
[thirdparty/dracut.git] / dracut.cmdline.7.asc
CommitLineData
888d53f2
HH
1DRACUT.CMDLINE(7)
2=================
3:doctype: manpage
4:man source: dracut
5:man manual: dracut
6
7NAME
8----
9dracut.cmdline - dracut kernel command line options
10
11DESCRIPTION
12-----------
13The root device used by the kernel is specified in the boot configuration
14file on the kernel command line, as always.
15
16The traditional _root=/dev/sda1_ style device specification is allowed, but not
17encouraged. The root device should better be identified by LABEL or UUID. If a
18label is used, as in _root=LABEL=<label_of_root>_ the initramfs will search all
19available devices for a filesystem with the appropriate label, and mount that
20device as the root filesystem. _root=UUID=<uuidnumber>_ will mount the partition
21with that UUID as the root filesystem.
22
23In the following all kernel command line parameters, which are processed by
24dracut, are described.
25
26"rd.*" parameters mentioned without "=" are boolean parameters. They can be
27turned on/off by setting them to {0|1}. If the assignment with "=" is missing
28"=1" is implied. For example _rd.info_ can be turned off with _rd.info=0_ or
29turned on with _rd.info=1_ or _rd.info_. The last value in the kernel command
30line is the value, which is honored.
31
32Standard
33~~~~~~~~
b6c89768 34**init=**__<path to real init>__::
888d53f2
HH
35 specify the path to the init programm to be started after the initramfs has
36 finished
37
b6c89768 38**root=**__<path to blockdevice>__::
888d53f2
HH
39 specify the block device to use as the root filesystem.
40+
b6c89768
HH
41[listing]
42.Example
43--
888d53f2
HH
44root=/dev/sda1
45root=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
46root=/dev/disk/by-label/Root
47root=LABEL=Root
48root=/dev/disk/by-uuid/3f5ad593-4546-4a94-a374-bcfb68aa11f7
49root=UUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
b23a2837 50root=PARTUUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
b6c89768 51--
888d53f2 52
b6c89768 53**rootfstype=**__<filesystem type>__:: "auto" if not specified.
888d53f2 54+
b6c89768
HH
55[listing]
56.Example
57--
888d53f2 58rootfstype=ext3
b6c89768 59--
888d53f2 60
b6c89768 61**rootflags=**__<mount options>__::
888d53f2
HH
62 specify additional mount options for the root filesystem. If not set,
63 _/etc/fstab_ of the real root will be parsed for special mount options and
64 mounted accordingly.
65
5afa9579
66**ro**::
67 force mounting _/_ and _/usr_ (if it is a separate device) read-only. If
68 none of ro and rw is present, both are mounted according to _/etc/fstab_.
69
70**rw**::
71 force mounting _/_ and _/usr_ (if it is a separate device) read-write.
72 See also ro option.
73
b6c89768 74**rootfallback=**__<path to blockdevice>__::
ef9ddb91
HH
75 specify the block device to use as the root filesystem, if the normal root
76 cannot be found. This can only be a simple block device with a simple file
77 system, for which the filesystem driver is either compiled in, or added
78 manually to the initramfs. This parameter can be specified multiple times.
c4c1c4f4 79
a6332e69 80**rd.auto** **rd.auto=1**::
ef9ddb91
HH
81 enable autoassembly of special devices like cryptoLUKS, dmraid, mdraid or
82 lvm. Default is off as of dracut version >= 024.
e0641277 83
5a575820
HH
84**rd.hostonly=0**::
85 removes all compiled in configuration of the host system the initramfs image
86 was built on. This helps booting, if any disk layout changed, especially in
87 combination with rd.auto or other parameters specifying the layout.
88
f232f662
HH
89**rd.cmdline=ask**::
90 prompts the user for additional kernel command line parameters
91
888d53f2
HH
92**rd.fstab=0**::
93 do not honor special mount options for the root filesystem found in
94 _/etc/fstab_ of the real root.
95
b6c89768 96**resume=**__<path to resume partition>__::
5d0404e3 97 resume from a swap partition
97903dfc 98+
b6c89768
HH
99[listing]
100.Example
101--
97903dfc
HH
102resume=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
103resume=/dev/disk/by-uuid/3f5ad593-4546-4a94-a374-bcfb68aa11f7
104resume=UUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
b6c89768 105--
97903dfc 106
9fb01d49
107**rd.skipfsck**::
108 skip fsck for rootfs and _/usr_. If you're mounting _/usr_ read-only and
109 the init system performs fsck before remount, you might want to use this
110 option to avoid duplication.
97903dfc 111
d4ce0e5e
HH
112iso-scan/filename
113~~~~~~~~~~~~~~~~~
114
115Using iso-scan/filename with a Fedora/Red Hat/CentOS Live iso should just work
116by copying the original kernel cmdline parameters.
117
118[listing]
119.Example
120--
121menuentry 'Live Fedora 20' --class fedora --class gnu-linux --class gnu --class os {
122 set isolabel=Fedora-Live-LXDE-x86_64-20-1
123 set isofile="/boot/iso/Fedora-Live-LXDE-x86_64-20-1.iso"
124 loopback loop $isofile
125 linux (loop)/isolinux/vmlinuz0 boot=isolinux iso-scan/filename=$isofile root=live:LABEL=$isolabel ro rd.live.image quiet rhgb
126 initrd (loop)/isolinux/initrd0.img
127}
128--
2ee48b4b 129
888d53f2
HH
130Misc
131~~~~
b6c89768 132**rd.driver.blacklist=**__<drivername>__[,__<drivername>__,...]::
888d53f2
HH
133 do not load kernel module <drivername>. This parameter can be specified
134 multiple times.
135
b6c89768 136**rd.driver.pre=**__<drivername>__[,__<drivername>__,...]::
888d53f2
HH
137 force loading kernel module <drivername>. This parameter can be specified
138 multiple times.
139
b6c89768 140**rd.driver.post=**__<drivername>__[,__<drivername>__,...]::
888d53f2
HH
141 force loading kernel module <drivername> after all automatic loading modules
142 have been loaded. This parameter can be specified multiple times.
143
b6c89768 144**rd.retry=**__<seconds>__::
56663e7e 145 specify how long dracut should retry the initqueue to configure devices.
5cd7c104 146 The default is 30 seconds. After 2/3 of the time, degraded raids are force
52da8a51
HH
147 started. If you have hardware, which takes a very long time to announce its
148 drives, you might want to extend this value.
5cd7c104 149
56663e7e
HR
150**rd.timeout=**__<seconds>__::
151 specify how long dracut should wait for devices to appear. The
152 default is '0', which means 'forever'. Note that this timeout
153 should be longer than rd.retry to allow for proper configuration.
154
13cb578a
BL
155**rd.noverifyssl**::
156 accept self-signed certificates for ssl downloads.
157
b6c89768 158**rd.ctty=**__<terminal device>__::
14986b9d
HH
159 specify the controlling terminal for the console.
160 This is useful, if you have multiple "console=" arguments.
161
888d53f2
HH
162[[dracutkerneldebug]]
163Debug
164~~~~~
ef9ddb91 165If you are dropped to an emergency shell, the file
05b879ed 166_/run/initramfs/rdsosreport.txt_ is created, which can be saved to a (to be
ef9ddb91
HH
167mounted by hand) partition (usually /boot) or a USB stick. Additional debugging
168info can be produced by adding **rd.debug** to the kernel command line.
c33488fe 169_/run/initramfs/rdsosreport.txt_ contains all logs and the output of some tools.
64d144ae
HH
170It should be attached to any report about dracut problems.
171
888d53f2
HH
172**rd.info**::
173 print informational output though "quiet" is set
174
175**rd.shell**::
176 allow dropping to a shell, if root mounting fails
177
178**rd.debug**::
64d144ae 179 set -x for the dracut shell.
ef9ddb91
HH
180 If systemd is active in the initramfs, all output is logged to the systemd
181 journal, which you can inspect with "journalctl -ab".
182 If systemd is not active, the logs are written to dmesg and
183 _/run/initramfs/init.log_.
64d144ae 184 If "quiet" is set, it also logs to the console.
888d53f2 185
7bd8f233 186**rd.memdebug=[0-3]**::
ef9ddb91
HH
187 Print memory usage info at various points, set the verbose level from 0 to 3.
188+
9c322b2f 189 Higher level means more debugging output:
b6c89768
HH
190+
191----
9c322b2f
DY
192 0 - no output
193 1 - partial /proc/meminfo
194 2 - /proc/meminfo
195 3 - /proc/meminfo + /proc/slabinfo
b6c89768 196----
7bd8f233 197
888d53f2
HH
198**rd.break**::
199 drop to a shell at the end
200
b6c89768 201**rd.break=**__{cmdline|pre-udev|pre-trigger|initqueue|pre-mount|mount|pre-pivot|cleanup}__::
888d53f2
HH
202 drop to a shell on defined breakpoint
203
204**rd.udev.info**::
205 set udev to loglevel info
206
207**rd.udev.debug**::
208 set udev to loglevel debug
209
210I18N
211~~~~
b6c89768 212**rd.vconsole.keymap=**__<keymap base file name>__::
888d53f2 213 keyboard translation table loaded by loadkeys; taken from keymaps directory;
b6c89768 214 will be written as KEYMAP to _/etc/vconsole.conf_ in the initramfs.
888d53f2 215+
b6c89768
HH
216[listing]
217.Example
218--
219rd.vconsole.keymap=de-latin1-nodeadkeys
220--
888d53f2 221
b6c89768 222**rd.vconsole.keymap.ext=**__<list of keymap base file names>__::
888d53f2
HH
223 list of extra keymaps to bo loaded (sep. by space); will be written as
224 EXT_KEYMAP to _/etc/vconsole.conf_ in the initramfs
225
b6c89768 226**rd.vconsole.unicode**::
888d53f2
HH
227 boolean, indicating UTF-8 mode; will be written as UNICODE to
228 _/etc/vconsole.conf_ in the initramfs
229
b6c89768 230**rd.vconsole.font=**__<font base file name>__::
888d53f2 231 console font; taken from consolefonts directory; will be written as FONT to
b6c89768 232 _/etc/vconsole.conf_ in the initramfs.
888d53f2 233+
b6c89768
HH
234[listing]
235.Example
236--
237rd.vconsole.font=LatArCyrHeb-16
238--
888d53f2 239
b6c89768 240**rd.vconsole.font.map=**__<console map base file name>__::
888d53f2
HH
241 see description of '-m' parameter in setfont manual; taken from consoletrans
242 directory; will be written as FONT_MAP to _/etc/vconsole.conf_ in the
243 initramfs
244
b6c89768 245**rd.vconsole.font.unimap=**__<unicode table base file name>__::
888d53f2
HH
246 see description of '-u' parameter in setfont manual; taken from unimaps
247 directory; will be written as FONT_UNIMAP to _/etc/vconsole.conf_ in the
248 initramfs
249
b6c89768 250**rd.locale.LANG=**__<locale>__::
888d53f2
HH
251 taken from the environment; if no UNICODE is defined we set its value in
252 basis of LANG value (whether it ends with ".utf8" (or similar) or not); will
b6c89768 253 be written as LANG to _/etc/locale.conf_ in the initramfs.
888d53f2 254+
b6c89768
HH
255[listing]
256.Example
257--
258rd.locale.LANG=pl_PL.utf8
259--
888d53f2 260
b6c89768 261**rd.locale.LC_ALL=**__<locale>__::
888d53f2
HH
262 taken from the environment; will be written as LC_ALL to _/etc/locale.conf_
263 in the initramfs
264
265LVM
266~~~
267**rd.lvm=0**::
268 disable LVM detection
269
b6c89768 270**rd.lvm.vg=**__<volume group name>__::
888d53f2
HH
271 only activate the volume groups with the given name. rd.lvm.vg can be
272 specified multiple times on the kernel command line.
273
b6c89768 274**rd.lvm.lv=**__<logical volume name>__::
888d53f2
HH
275 only activate the logical volumes with the given name. rd.lvm.lv can be
276 specified multiple times on the kernel command line.
277
278**rd.lvm.conf=0**::
279 remove any _/etc/lvm/lvm.conf_, which may exist in the initramfs
280
281crypto LUKS
282~~~~~~~~~~~
283**rd.luks=0**::
284 disable crypto LUKS detection
285
b6c89768 286**rd.luks.uuid=**__<luks uuid>__::
888d53f2
HH
287 only activate the LUKS partitions with the given UUID. Any "luks-" of the
288 LUKS UUID is removed before comparing to _<luks uuid>_.
289 The comparisons also matches, if _<luks uuid>_ is only the beginning of the
290 LUKS UUID, so you don't have to specify the full UUID.
291 This parameter can be specified multiple times.
292
b6c89768 293**rd.luks.allow-discards=**__<luks uuid>__::
ef9ddb91
HH
294 Allow using of discards (TRIM) requests for LUKS partitions with the given
295 UUID. Any "luks-" of the LUKS UUID is removed before comparing to
296 _<luks uuid>_. The comparisons also matches, if _<luks uuid>_ is only the
297 beginning of the LUKS UUID, so you don't have to specify the full UUID.
5ad3803d
HH
298 This parameter can be specified multiple times.
299
f7235c22 300**rd.luks.allow-discards**::
5ad3803d
HH
301 Allow using of discards (TRIM) requests on all LUKS partitions.
302
888d53f2
HH
303**rd.luks.crypttab=0**::
304 do not check, if LUKS partition is in _/etc/crypttab_
305
306crypto LUKS - key on removable device support
307~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
b6c89768 308**rd.luks.key=**__<keypath>__:__<keydev>__:__<luksdev>__::
ef9ddb91
HH
309 _keypath_ is a path to key file to look for. It's REQUIRED. When _keypath_
310 ends with '.gpg' it's considered to be key encrypted symmetrically with GPG.
311 You will be prompted for password on boot. GPG support comes with
312 'crypt-gpg' module which needs to be added explicitly.
313+
314_keydev_ is a device on which key file resides. It might be kernel name of
315devices (should start with "/dev/"), UUID (prefixed with "UUID=") or label
316(prefix with "LABEL="). You don't have to specify full UUID. Just its beginning
317will suffice, even if its ambiguous. All matching devices will be probed.
318This parameter is recommended, but not required. If not present, all block
319devices will be probed, which may significantly increase boot time.
320+
321If _luksdev_ is given, the specified key will only be applied for that LUKS
322device. Possible values are the same as for _keydev_. Unless you have several
323LUKS devices, you don't have to specify this parameter. The simplest usage is:
888d53f2 324+
b6c89768
HH
325[listing]
326.Example
327--
888d53f2 328rd.luks.key=/foo/bar.key
b6c89768 329--
888d53f2
HH
330+
331As you see, you can skip colons in such a case.
173edca0
332+
333[NOTE]
334===============================
600c8769 335dracut pipes key to cryptsetup with _-d -_ argument, therefore you need to pipe
173edca0
336to crypsetup luksFormat with _-d -_, too!
337
338Here follows example for key encrypted with GPG:
339
b6c89768
HH
340[listing]
341--
342gpg --quiet --decrypt rootkey.gpg | \
343cryptsetup -d - -v --cipher serpent-cbc-essiv:sha256 \
173edca0 344--key-size 256 luksFormat /dev/sda3
b6c89768 345--
173edca0
346
347If you use plain keys, just add path to _-d_ option:
348
b6c89768
HH
349[listing]
350--
351cryptsetup -d rootkey.key -v --cipher serpent-cbc-essiv:sha256 \
352 --key-size 256 luksFormat /dev/sda3
353--
173edca0 354===============================
888d53f2
HH
355
356MD RAID
357~~~~~~~
358**rd.md=0**::
359 disable MD RAID detection
360
361**rd.md.imsm=0**::
362 disable MD RAID for imsm/isw raids, use DM RAID instead
363
364**rd.md.ddf=0**::
365 disable MD RAID for SNIA ddf raids, use DM RAID instead
366
367**rd.md.conf=0**::
368 ignore mdadm.conf included in initramfs
369
370**rd.md.waitclean=1**::
ef9ddb91
HH
371 wait for any resync, recovery, or reshape activity to finish before
372 continuing
888d53f2 373
b6c89768 374**rd.md.uuid=**__<md raid uuid>__::
888d53f2
HH
375 only activate the raid sets with the given UUID. This parameter can be
376 specified multiple times.
377
378DM RAID
379~~~~~~~
380**rd.dm=0**::
381 disable DM RAID detection
382
b6c89768 383**rd.dm.uuid=**__<dm raid uuid>__::
888d53f2
HH
384 only activate the raid sets with the given UUID. This parameter can be
385 specified multiple times.
386
778b3543
HH
387MULTIPATH
388~~~~~~~~~
389**rd.multipath=0**::
390 disable multipath detection
391
888d53f2
HH
392FIPS
393~~~~
394**rd.fips**::
395 enable FIPS
396
b6c89768
HH
397**boot=**__<boot device>__::
398 specify the device, where /boot is located.
888d53f2 399+
b6c89768
HH
400[listing]
401.Example
402--
888d53f2
HH
403boot=/dev/sda1
404boot=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
405boot=UUID=<uuid>
406boot=LABEL=<label>
b6c89768 407--
888d53f2
HH
408
409**rd.fips.skipkernel**::
410 skip checksum check of the kernel image. Useful, if the kernel image is not
411 in a separate boot partition.
412
413Network
414~~~~~~~
b6c89768
HH
415
416[IMPORTANT]
417=====================
ef9ddb91
HH
418It is recommended to either bind an interface to a MAC with the **ifname**
419argument, or to use the systemd-udevd predictable network interface names.
b6c89768
HH
420
421Predictable network interface device names based on:
422
423- firmware/bios-provided index numbers for on-board devices
424- firmware-provided pci-express hotplug slot index number
425- physical/geographical location of the hardware
426- the interface's MAC address
427
ef9ddb91
HH
428See:
429http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
b6c89768
HH
430
431Two character prefixes based on the type of interface:
432
433en:: ethernet
434wl:: wlan
435ww:: wwan
436
437Type of names:
438
439o<index>:: on-board device index number
440s<slot>[f<function>][d<dev_id>]:: hotplug slot index number
441x<MAC>:: MAC address
442[P<domain>]p<bus>s<slot>[f<function>][d<dev_id>]:: PCI geographical location
443[P<domain>]p<bus>s<slot>[f<function>][u<port>][..][c<config>][i<interface>]:: USB port number chain
444
445All multi-function PCI devices will carry the [f<function>] number in the
446device name, including the function 0 device.
447
448When using PCI geography, The PCI domain is only prepended when it is not 0.
449
450For USB devices the full chain of port numbers of hubs is composed. If the
451name gets longer than the maximum number of 15 characters, the name is not
452exported.
453The usual USB configuration == 1 and interface == 0 values are suppressed.
454
455PCI ethernet card with firmware index "1"::
456* eno1
457
458PCI ethernet card in hotplug slot with firmware index number::
459* ens1
460
461PCI ethernet multi-function card with 2 ports::
462* enp2s0f0
463* enp2s0f1
464
465PCI wlan card::
466* wlp3s0
467
468USB built-in 3G modem::
469* wwp0s29u1u4i6
470
471USB Android phone::
472* enp0s29u1u2
473=====================
474
5580e4c1 475**ip=**__{dhcp|on|any|dhcp6|auto6}__::
ef9ddb91
HH
476 dhcp|on|any::: get ip from dhcp server from all interfaces. If root=dhcp,
477 loop sequentially through all interfaces (eth0, eth1, ...) and use the first
478 with a valid DHCP root-path.
888d53f2
HH
479
480 auto6::: IPv6 autoconfiguration
481
482 dhcp6::: IPv6 DHCP
483
b6c89768 484**ip=**__<interface>__:__{dhcp|on|any|dhcp6|auto6}__[:[__<mtu>__][:__<macaddr>__]]::
888d53f2
HH
485 This parameter can be specified multiple times.
486+
1760dfc0 487=====================
888d53f2
HH
488dhcp|on|any|dhcp6::: get ip from dhcp server on a specific interface
489auto6::: do IPv6 autoconfiguration
1760dfc0
HH
490<macaddr>::: optionally **set** <macaddr> on the <interface>. This
491cannot be used in conjunction with the **ifname** argument for the
492same <interface>.
493=====================
494
e38e73d5 495**ip=**__<client-IP>__:[__<peer>__]:__<gateway-IP>__:__<netmask>__:__<client_hostname>__:__<interface>__:__{none|off|dhcp|on|any|dhcp6|auto6|ibft}__:[:[__<mtu>__][:__<macaddr>__]]::
888d53f2
HH
496 explicit network configuration. If you want do define a IPv6 address, put it
497 in brackets (e.g. [2001:DB8::1]). This parameter can be specified multiple
e38e73d5 498 times. __<peer>__ is optional and is the address of the remote endpoint
ef9ddb91
HH
499 for pointopoint interfaces and it may be followed by a slash and a decimal
500 number, encoding the network prefix length.
990e945f 501+
1760dfc0
HH
502=====================
503<macaddr>::: optionally **set** <macaddr> on the <interface>. This
504cannot be used in conjunction with the **ifname** argument for the
505same <interface>.
506=====================
507
1982098e
HH
508**ip=**__<client-IP>__:[__<peer>__]:__<gateway-IP>__:__<netmask>__:__<client_hostname>__:__<interface>__:__{none|off|dhcp|on|any|dhcp6|auto6|ibft}__[:[__<dns1>__][:__<dns2>__]]::
509 explicit network configuration. If you want do define a IPv6 address, put it
510 in brackets (e.g. [2001:DB8::1]). This parameter can be specified multiple
511 times. __<peer>__ is optional and is the address of the remote endpoint
512 for pointopoint interfaces and it may be followed by a slash and a decimal
513 number, encoding the network prefix length.
514
b6c89768 515**ifname=**__<interface>__:__<MAC>__::
ef9ddb91
HH
516 Assign network device name <interface> (ie "bootnet") to the NIC with
517 MAC <MAC>.
1760dfc0 518+
b6c89768 519WARNING: Do **not** use the default kernel naming scheme for the interface name,
1760dfc0
HH
520as it can conflict with the kernel names. So, don't use "eth[0-9]+" for the
521interface name. Better name it "bootnet" or "bluesocket".
888d53f2 522
7b46244b
HH
523**rd.route=**__<net>__/__<netmask>__:__<gateway>__[:__<interface>__]::
524 Add a static route with route options, which are separated by a colon.
525 IPv6 addresses have to be put in brackets.
526+
527[listing]
528.Example
529--
530 rd.route=192.168.200.0/24:192.168.100.222:ens10
531 rd.route=192.168.200.0/24:192.168.100.222
532 rd.route=192.168.200.0/24::ens10
533 rd.route=[2001:DB8:3::/8]:[2001:DB8:2::1]:ens10
534--
535
b6c89768 536**bootdev=**__<interface>__::
888d53f2
HH
537 specify network interface to use routing and netroot information from.
538 Required if multiple ip= lines are used.
539
ee993857
HH
540**BOOTIF=**__<MAC>__::
541 specify network interface to use routing and netroot information from.
542
543**rd.bootif=0**::
544 Disable BOOTIF parsing, which is provided by PXE
545
888d53f2
HH
546**nameserver=**__<IP>__ [**nameserver=**__<IP>__ ...]::
547 specify nameserver(s) to use
548
df0bdd5a
HH
549**rd.peerdns=0**::
550 Disable DNS setting of DHCP parameters.
551
888d53f2
HH
552**biosdevname=0**::
553 boolean, turn off biosdevname network interface renaming
554
48dba7f9
HH
555**rd.neednet=1**::
556 boolean, bring up network even without netroot set
557
b6c89768 558**vlan=**__<vlanname>__:__<phydevice>__::
144787fe 559 Setup vlan device named <vlanname> on <phydeivce>.
ef9ddb91
HH
560 We support the four styles of vlan names: VLAN_PLUS_VID (vlan0005),
561 VLAN_PLUS_VID_NO_PAD (vlan5), DEV_PLUS_VID (eth0.0005),
562 DEV_PLUS_VID_NO_PAD (eth0.5)
144787fe 563
b6c89768 564**bond=**__<bondname>__[:__<bondslaves>__:[:__<options>__]]::
c438bdb0
AW
565 Setup bonding device <bondname> on top of <bondslaves>.
566 <bondslaves> is a comma-separated list of physical (ethernet) interfaces.
ef9ddb91
HH
567 <options> is a comma-separated list on bonding options (modinfo bonding for
568 details) in format compatible with initscripts. If <options> includes
569 multi-valued arp_ip_target option, then its values should be separated by
570 semicolon. Bond without parameters assumes
571 bond=bond0:eth0,eth1:mode=balance-rr
c438bdb0 572
b6c89768 573**team=**__<teammaster>__:__<teamslaves>__::
3baa150b
CW
574 Setup team device <teammaster> on top of <teamslaves>.
575 <teamslaves> is a comma-separated list of physical (ethernet) interfaces.
576
b6c89768 577**bridge=**__<bridgename>__:__<ethnames>__::
21928b97 578 Setup bridge <bridgename> with <ethnames>. <ethnames> is a comma-separated
ef9ddb91
HH
579 list of physical (ethernet) interfaces. Bridge without parameters assumes
580 bridge=br0:eth0
9337c692 581
888d53f2
HH
582NFS
583~~~
b6c89768 584**root=**\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__]::
888d53f2 585 mount nfs share from <server-ip>:/<root-dir>, if no server-ip is given, use
7b46244b 586 dhcp next_server. If server-ip is an IPv6 address it has to be put in
888d53f2
HH
587 brackets, e.g. [2001:DB8::1]. NFS options can be appended with the prefix
588 ":" or "," and are seperated by ",".
589
b6c89768 590**root=**nfs:\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__], **root=**nfs4:\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__], **root=**__{dhcp|dhcp6}__::
888d53f2
HH
591 root=dhcp alone directs initrd to look at the DHCP root-path where NFS
592 options can be specified.
593+
b6c89768
HH
594[listing]
595.Example
596--
888d53f2
HH
597 root-path=<server-ip>:<root-dir>[,<nfs-options>]
598 root-path=nfs:<server-ip>:<root-dir>[,<nfs-options>]
599 root-path=nfs4:<server-ip>:<root-dir>[,<nfs-options>]
b6c89768 600--
888d53f2 601
b6c89768 602**root=**_/dev/nfs_ nfsroot=\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__]::
888d53f2
HH
603 _Deprecated!_ kernel Documentation_/filesystems/nfsroot.txt_ defines this
604 method. This is supported by dracut, but not recommended.
605
b6c89768 606**rd.nfs.domain=**__<NFSv4 domain name>__::
888d53f2
HH
607 Set the NFSv4 domain name. Will overwrite the settings in _/etc/idmap.conf_.
608
2448fbf1
HH
609**rd.net.dhcp.retry=**__<cnt>__::
610 If this option is set, dracut will try to connect via dhcp <cnt> times before failing.
611 Default is 1.
612
613**rd.net.timeout.dhcp=**__<arg>__::
614 If this option is set, dhclient is called with "-timeout <arg>".
615
616**rd.net.timeout.iflink=**__<seconds>__::
617 Wait <seconds> until link shows up. Default is 60 seconds.
618
619**rd.net.timeout.ifup=**__<seconds>__::
620 Wait <seconds> until link has state "UP". Default is 20 seconds.
621
622**rd.net.timeout.route=**__<seconds>__::
623 Wait <seconds> until route shows up. Default is 20 seconds.
624
625**rd.net.timeout.ipv6dad=**__<seconds>__::
626 Wait <seconds> until IPv6 DAD is finished. Default is 50 seconds.
627
628**rd.net.timeout.ipv6auto=**__<seconds>__::
629 Wait <seconds> until IPv6 automatic addresses are assigned. Default is 40 seconds.
630
631**rd.net.timeout.carrier=**__<seconds>__::
632 Wait <seconds> until carrier is recognized. Default is 5 seconds.
633
d580636e
MG
634CIFS
635~~~
b6c89768 636**root=**cifs://[__<username>__[:__<password>__]@]__<server-ip>__:__<root-dir>__::
d580636e
MG
637 mount cifs share from <server-ip>:/<root-dir>, if no server-ip is given, use
638 dhcp next_server. if server-ip is an IPv6 address it has to be put in
639 brackets, e.g. [2001:DB8::1]. If a username or password are not specified
640as part of the root, then they must be passed on the command line through
641cifsuser/cifspass.
833685de 642+
ef9ddb91
HH
643WARNING: Passwords specified on the kernel command line are visible for all
644users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the
645network, when using DHCP with DHCP root-path.
d580636e 646
b6c89768 647**cifsuser**=__<username>__::
d580636e
MG
648 Set the cifs username, if not specified as part of the root.
649
b6c89768 650**cifspass**=__<password>__::
d580636e 651 Set the cifs password, if not specified as part of the root.
833685de 652+
ef9ddb91
HH
653WARNING: Passwords specified on the kernel command line are visible for all
654users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the
655network, when using DHCP with DHCP root-path.
d580636e 656
888d53f2
HH
657iSCSI
658~~~~~
b6c89768 659**root=**iscsi:[__<username>__:__<password>__[:__<reverse>__:__<password>__]@][__<servername>__]:[__<protocol>__]:[__<port>__][:[__<iscsi_iface_name>__]:[__<netdev_name>__]]:[__<LUN>__]:__<targetname>__::
888d53f2
HH
660 protocol defaults to "6", LUN defaults to "0". If the "servername" field is
661 provided by BOOTP or DHCP, then that field is used in conjunction with other
662 associated fields to contact the boot server in the Boot stage. However, if
663 the "servername" field is not provided, then the "targetname" field is then
664 used in the Discovery Service stage in conjunction with other associated
665 fields. See
666 link:$$http://tools.ietf.org/html/rfc4173#section-5$$[rfc4173].
888d53f2 667+
ef9ddb91
HH
668WARNING: Passwords specified on the kernel command line are visible for all
669users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the
670network, when using DHCP with DHCP root-path.
b6c89768
HH
671+
672[listing]
673.Example
674--
888d53f2 675root=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
b6c89768 676--
888d53f2 677+
b6c89768 678If servername is an IPv6 address, it has to be put in brackets:
888d53f2 679+
b6c89768
HH
680[listing]
681.Example
682--
888d53f2 683root=iscsi:[2001:DB8::1]::::iqn.2009-06.dracut:target0
b6c89768 684--
888d53f2 685
b6c89768
HH
686**root=**__???__ **netroot=**iscsi:[__<username>__:__<password>__[:__<reverse>__:__<password>__]@][__<servername>__]:[__<protocol>__]:[__<port>__][:[__<iscsi_iface_name>__]:[__<netdev_name>__]]:[__<LUN>__]:__<targetname>__ ...::
687 multiple netroot options allow setting up multiple iscsi disks:
888d53f2 688+
b6c89768
HH
689[listing]
690.Example
691--
888d53f2
HH
692root=UUID=12424547
693netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
694netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target1
b6c89768 695--
888d53f2 696+
b6c89768 697If servername is an IPv6 address, it has to be put in brackets:
888d53f2 698+
b6c89768
HH
699[listing]
700.Example
701--
888d53f2 702netroot=iscsi:[2001:DB8::1]::::iqn.2009-06.dracut:target0
b6c89768 703--
833685de 704+
ef9ddb91
HH
705WARNING: Passwords specified on the kernel command line are visible for all
706users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the
707network, when using DHCP with DHCP root-path.
708You may want to use rd.iscsi.firmware.
888d53f2 709
b6c89768 710**root=**__???__ **rd.iscsi.initiator=**__<initiator>__ **rd.iscsi.target.name=**__<target name>__ **rd.iscsi.target.ip=**__<target ip>__ **rd.iscsi.target.port=**__<target port>__ **rd.iscsi.target.group=**__<target group>__ **rd.iscsi.username=**__<username>__ **rd.iscsi.password=**__<password>__ **rd.iscsi.in.username=**__<in username>__ **rd.iscsi.in.password=**__<in password>__::
888d53f2 711 manually specify all iscsistart parameter (see **+iscsistart --help+**)
833685de 712+
ef9ddb91
HH
713WARNING: Passwords specified on the kernel command line are visible for all
714users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the
715network, when using DHCP with DHCP root-path.
716You may want to use rd.iscsi.firmware.
888d53f2
HH
717
718**root=**_???_ **netroot=**iscsi **rd.iscsi.firmware=1**::
719 will read the iscsi parameter from the BIOS firmware
720
b6c89768 721**rd.iscsi.param=**__<param>__::
8d51acbb
HH
722 <param> will be passed as "--param <param>" to iscsistart.
723 This parameter can be specified multiple times.
8d51acbb 724+
b6c89768
HH
725[listing]
726.Example
727--
833685de 728"netroot=iscsi rd.iscsi.firmware=1 rd.iscsi.param=node.session.timeo.replacement_timeout=30"
b6c89768 729--
8d51acbb
HH
730+
731will result in
732+
b6c89768
HH
733[listing]
734--
8d51acbb 735iscsistart -b --param node.session.timeo.replacement_timeout=30
b6c89768 736--
8d51acbb 737
5580e4c1
HH
738**rd.iscsi.ibft** **rd.iscsi.ibft=1**:
739 Turn on iBFT autoconfiguration for the interfaces
740
69171aa8
HH
741**rd.iscsi.waitnet=0**:
742 Turn off waiting for all interfaces to be up before trying to login to the iSCSI targets.
743
744**rd.iscsi.testroute=0**:
745 Turn off checking, if the route to the iSCSI target IP is possible before trying to login.
746
888d53f2
HH
747FCoE
748~~~~
b6c89768 749**fcoe=**__<edd|interface|MAC>__:__{dcb|nodcb}__::
888d53f2
HH
750 Try to connect to a FCoE SAN through the NIC specified by _<interface>_ or
751 _<MAC>_ or EDD settings. For the second argument, currently only nodcb is
1760dfc0
HH
752 supported. This parameter can be specified multiple times.
753+
b6c89768 754NOTE: letters in the MAC-address must be lowercase!
888d53f2
HH
755
756NBD
757~~~
b6c89768 758**root=**??? **netroot=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
888d53f2
HH
759 mount nbd share from <server>
760
b6c89768 761**root=dhcp** with **dhcp** **root-path=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
888d53f2
HH
762 root=dhcp alone directs initrd to look at the DHCP root-path where NBD
763 options can be specified. This syntax is only usable in cases where you are
764 directly mounting the volume as the rootfs.
765
766DASD
767~~~~
4d76a85d 768**rd.dasd=**....::
888d53f2
HH
769 same syntax as the kernel module parameter (s390 only)
770
888d53f2
HH
771ZFCP
772~~~~
b6c89768
HH
773**rd.zfcp=**__<zfcp adaptor device bus ID>__,__<WWPN>__,__<FCPLUN>__::
774 rd.zfcp can be specified multiple times on the kernel command line.
888d53f2 775+
b6c89768
HH
776[listing]
777.Example
778--
888d53f2 779rd.zfcp=0.0.4000,0x5005076300C213e9,0x5022000000000000
b6c89768 780--
888d53f2
HH
781
782**rd.zfcp.conf=0**::
783 ignore zfcp.conf included in the initramfs
784
785ZNET
786~~~~
b6c89768
HH
787**rd.znet=**__<nettype>__,__<subchannels>__,__<options>__::
788 rd.znet can be specified multiple times on the kernel command line.
888d53f2 789+
b6c89768
HH
790[listing]
791.Example
792--
888d53f2 793rd.znet=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=1,portname=foo
62fd2b36 794rd.znet=ctc,0.0.0600,0.0.0601,protocol=bar
b6c89768 795--
888d53f2 796
504c0a8f
MH
797Booting live images
798~~~~~~~~~~~~~~~~~~~
799Dracut offers multiple options for live booted images:
800
801=====================
33a4198e
FG
802SquashFS with read-only filesystem image::: The system will boot with a read
803only filesystem from the SquashFS and apply a writable device-mapper snapshot
504c0a8f
MH
804over the read only filesystem. Using this method ensures a relatively fast
805boot and lower RAM usage. Users **must be careful** to avoid writing too many
33a4198e
FG
806blocks to the snapshot volume. Once the blocks of the snapshot overlay are
807exhausted, the root filesystem becomes unusable and requires a reboot. A
808persistent overlay is marked Invalid, and requires a difficult recovery.
809Non-persistent overlays default to 512 MiB in RAM, but the size can be adjusted
810with the **rd.live.overlay.size=** kernel command line option.
504c0a8f
MH
811+
812The filesystem structure is expected to be:
813+
814[listing]
815--
33a4198e 816squashfs.img | Squashfs from LiveCD .iso downloaded via network
504c0a8f
MH
817 !(mount)
818 /LiveOS
819 |- ext3fs.img | Filesystem image to mount read-only
820 !(mount)
821 /bin | Live filesystem
822 /boot |
823 /dev |
824 ... |
825--
826+
827Dracut uses this method of live booting by default. No additional command line
828options are required other than **root=live:<URL>** to specify the location
829of your squashed filesystem.
830+
33a4198e
FG
831- The compressed SquashFS image can be copied during boot to RAM at
832`/run/initramfs/squashed.img` by using the **rd.live.ram=1** option.
833- A device with a persistent overlay can be booted read only by using the
834**rd.live.overlay.readonly** option on the kernel command line. This will
835cause a temporary, writable overlay to be stacked over a read-only snapshot
836of the root filesystem.
837+
838Uncompressed live filesystem image:::
839When the live system was installed with the '--skipcompress' option of the
840__livecd-iso-to-disk__ installation script for Live USB devices, the root
841filesystem image, `ext3fs.img`, is expanded on installation and no SquashFS
842is involved during boot.
843+
844- If **rd.live.ram=1** is used in this situation, the full, uncompressed
845root filesystem is copied during boot to `/run/initramfs/rootfs.img` in the
846`/run` tmpfs.
847+
848- If **rd.live.overlay=none** is provided as a kernel command line option,
849a writable, linear device-mapper target is created on boot with no overlay.
850
851writable filesystem image:::
852The system will retrieve a compressed filesystem image, extract it to
853`/run/initramfs/fsimg/rootfs.img`, connect it to a loop device, create a
854writable, linear device-mapper target at `/dev/mapper/live-rw`, and mount that
855as a writable volume at `/`. More RAM is required during boot but the live
856filesystem is easier to manage if it becomes full. Users can make a filesystem
857image of any size and that size will be maintained when the system boots. There
858is no persistence of root filesystem changes between boots with this option.
504c0a8f
MH
859+
860The filesystem structure is expected to be:
861+
862[listing]
863--
864rootfs.tgz | Compressed tarball containing fileystem image
865 !(unpack)
33a4198e 866 /rootfs.img | Filesystem image at /run/initramfs/fsimg/
504c0a8f
MH
867 !(mount)
868 /bin | Live filesystem
869 /boot |
870 /dev |
871 ... |
872--
873+
33a4198e 874To use this boot option, ensure that **rd.writable.fsimg=1** is in your kernel
504c0a8f 875command line and add the **root=live:<URL>** to specify the location
33a4198e 876of your compressed filesystem image tarball or SquashFS image.
504c0a8f
MH
877=====================
878
33a4198e
FG
879**rd.writable.fsimg=**1::
880Enables writable filesystem support. The system will boot with a fully
881writable (but non-persistent) filesystem without snapshots __(see notes above
882about available live boot options)__. You can use the **rootflags** option to
883set mount options for the live filesystem as well __(see documentation about
884rootflags in the **Standard** section above)__.
885This implies that the whole image is copied to RAM before the boot continues.
886+
887NOTE: There must be enough free RAM available to hold the complete image.
888+
889This method is very suitable for diskless boots.
890
504c0a8f 891**root=**live:__<url>__::
338bad63 892Boots a live image retrieved from __<url>__. Valid handlers: __http, https, ftp, torrent, tftp__.
504c0a8f
MH
893+
894[listing]
895.Example
896--
897root=live:http://example.com/liveboot.img
898root=live:ftp://ftp.example.com/liveboot.img
338bad63 899root=live:torrent://example.com/liveboot.img.torrent
504c0a8f
MH
900--
901
902**rd.live.debug=**1::
903Enables debug output from the live boot process.
904
905**rd.live.dir=**__<path>__::
906Specifies the directory within the squashfs where the ext3fs.img or rootfs.img
907can be found. By default, this is __LiveOS__.
908
33a4198e
FG
909**rd.live.squashimg=**__<filename of SquashFS image>__::
910Specifies the filename for a SquashFS image of the root filesystem.
911By default, this is __squashfs.img__.
912
b0472eac
FD
913**rd.live.ram=**1::
914Copy the complete image to RAM and use this for booting. This is useful
33a4198e 915when the image resides on, i.e., a DVD which needs to be ejected later on.
b0472eac 916
33a4198e 917**rd.live.overlay=**__<devspec>__:__(<pathspec>|auto)__|__none__::
a1b4efe6 918Allow the usage of a permanent overlay.
33a4198e
FG
919- _<devspec>_ specifies the path to a device with a mountable filesystem.
920- _<pathspec>_ is the path to a file within that filesystem, which shall be
921used to persist the changes made to the device specified by the
922**root=live:__<url>__** option.
923- _none_ specifies no overlay when an uncompressed live root filesystem is
924available.
a1b4efe6
FD
925+
926[listing]
927.Example
928--
929rd.live.overlay=/dev/sdb1:persistent-overlay.img
930--
931
33a4198e
FG
932**rd.live.overlay.size=**__<size_MiB>__::
933Specifies a non-persistent overlay size in MiB. The default is _512_.
934
935**rd.live.overlay.readonly=**1::
936Specifies a non-persistent, writable snapshot overlay to be stacked over a
937read-only snapshot of the root filesystem, `/dev/mapper/live-ro`.
938
939**rd.live.overlay.reset=**1::
940Specifies that a persistent overlay should be reset on boot. All root
941filesystem changes are vacated by this action.
942
d6e34d36
FD
943**rd.live.overlay.thin=**1::
944Enables the usage of thin snapshots instead of classic dm snapshots.
33a4198e
FG
945The advantage of thin snapshots is that they support discards, and will free
946blocks that are not claimed by the filesystem. In this use case, this means
947that memory is given back to the kernel when the filesystem does not claim it
d6e34d36
FD
948anymore.
949
504c0a8f 950
888d53f2
HH
951Plymouth Boot Splash
952~~~~~~~~~~~~~~~~~~~~
953**plymouth.enable=0**::
504c0a8f 954 disable the plymouth bootsplash completely.
888d53f2
HH
955
956**rd.plymouth=0**::
957 disable the plymouth bootsplash only for the initramfs.
958
959Kernel keys
960~~~~~~~~~~~
b6c89768
HH
961**masterkey=**__<kernel master key path name>__::
962 Set the path name of the kernel master key.
888d53f2 963+
b6c89768
HH
964[listing]
965.Example
966--
888d53f2 967masterkey=/etc/keys/kmk-trusted.blob
b6c89768 968--
888d53f2 969
b6c89768
HH
970**masterkeytype=**__<kernel master key type>__::
971 Set the type of the kernel master key.
888d53f2 972+
b6c89768
HH
973[listing]
974.Example
975--
888d53f2 976masterkeytype=trusted
b6c89768 977--
888d53f2 978
b6c89768
HH
979**evmkey=**__<EVM key path name>__::
980 Set the path name of the EVM key.
888d53f2 981+
b6c89768
HH
982[listing]
983.Example
984--
888d53f2 985evmkey=/etc/keys/evm-trusted.blob
b6c89768 986--
888d53f2 987
b6c89768
HH
988**ecryptfskey=**__<eCryptfs key path name>__::
989 Set the path name of the eCryptfs key.
888d53f2 990+
b6c89768
HH
991[listing]
992.Example
993--
888d53f2 994ecryptfskey=/etc/keys/ecryptfs-trusted.blob
b6c89768 995--
888d53f2
HH
996
997Deprecated, renamed Options
998~~~~~~~~~~~~~~~~~~~~~~~~~~~
ef9ddb91
HH
999Here is a list of options, which were used in dracut prior to version 008, and
1000their new replacement.
888d53f2
HH
1001
1002rdbreak:: rd.break
1003
1004rd_CCW:: rd.ccw
1005
4d76a85d 1006rd_DASD_MOD:: rd.dasd
888d53f2
HH
1007
1008rd_DASD:: rd.dasd
1009
1010rdinitdebug rdnetdebug:: rd.debug
1011
1012rd_NO_DM:: rd.dm=0
1013
1014rd_DM_UUID:: rd.dm.uuid
1015
1016rdblacklist:: rd.driver.blacklist
1017
1018rdinsmodpost:: rd.driver.post
1019
1020rdloaddriver:: rd.driver.pre
1021
1022rd_NO_FSTAB:: rd.fstab=0
1023
1024rdinfo:: rd.info
1025
1026check:: rd.live.check
1027
1028rdlivedebug:: rd.live.debug
1029
1030live_dir:: rd.live.dir
1031
1032liveimg:: rd.live.image
1033
1034overlay:: rd.live.overlay
1035
1036readonly_overlay:: rd.live.overlay.readonly
1037
1038reset_overlay:: rd.live.overlay.reset
1039
1040live_ram:: rd.live.ram
1041
1042rd_NO_CRYPTTAB:: rd.luks.crypttab=0
1043
1044rd_LUKS_KEYDEV_UUID:: rd.luks.keydev.uuid
1045
1046rd_LUKS_KEYPATH:: rd.luks.keypath
1047
1048rd_NO_LUKS:: rd.luks=0
1049
1050rd_LUKS_UUID:: rd.luks.uuid
1051
1052rd_NO_LVMCONF:: rd.lvm.conf
1053
1054rd_LVM_LV:: rd.lvm.lv
1055
1056rd_NO_LVM:: rd.lvm=0
1057
1058rd_LVM_SNAPSHOT:: rd.lvm.snapshot
1059
1060rd_LVM_SNAPSIZE:: rd.lvm.snapsize
1061
1062rd_LVM_VG:: rd.lvm.vg
1063
1064rd_NO_MDADMCONF:: rd.md.conf=0
1065
1066rd_NO_MDIMSM:: rd.md.imsm=0
1067
1068rd_NO_MD:: rd.md=0
1069
1070rd_MD_UUID:: rd.md.uuid
1071
778b3543
HH
1072rd_NO_MULTIPATH: rd.multipath=0
1073
888d53f2
HH
1074rd_NFS_DOMAIN:: rd.nfs.domain
1075
1076iscsi_initiator:: rd.iscsi.initiator
1077
1078iscsi_target_name:: rd.iscsi.target.name
1079
1080iscsi_target_ip:: rd.iscsi.target.ip
1081
1082iscsi_target_port:: rd.iscsi.target.port
1083
1084iscsi_target_group:: rd.iscsi.target.group
1085
1086iscsi_username:: rd.iscsi.username
1087
1088iscsi_password:: rd.iscsi.password
1089
1090iscsi_in_username:: rd.iscsi.in.username
1091
1092iscsi_in_password:: rd.iscsi.in.password
1093
1094iscsi_firmware:: rd.iscsi.firmware=0
1095
1096rd_NO_PLYMOUTH:: rd.plymouth=0
1097
1098rd_retry:: rd.retry
1099
1100rdshell:: rd.shell
1101
1102rd_NO_SPLASH:: rd.splash
1103
1104rdudevdebug:: rd.udev.debug
1105
1106rdudevinfo:: rd.udev.info
1107
1108rd_NO_ZFCPCONF:: rd.zfcp.conf=0
1109
1110rd_ZFCP:: rd.zfcp
1111
1112rd_ZNET:: rd.znet
1113
1114KEYMAP:: vconsole.keymap
1115
1116KEYTABLE:: vconsole.keymap
1117
1118SYSFONT:: vconsole.font
1119
1120CONTRANS:: vconsole.font.map
1121
1122UNIMAP:: vconsole.font.unimap
1123
1124UNICODE:: vconsole.unicode
1125
1126EXT_KEYMAP:: vconsole.keymap.ext
1127
1128Configuration in the Initramfs
1129~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1130_/etc/conf.d/_::
1131 Any files found in _/etc/conf.d/_ will be sourced in the initramfs to
1132 set initial values. Command line options will override these values
1133 set in the configuration files.
1134
1135_/etc/cmdline_::
ef9ddb91
HH
1136 Can contain additional command line options. Deprecated, better use
1137 /etc/cmdline.d/*.conf.
888d53f2
HH
1138
1139_/etc/cmdline.d/*.conf_::
1140 Can contain additional command line options.
1141
1142AUTHOR
1143------
9f355169 1144Harald Hoyer
888d53f2
HH
1145
1146SEE ALSO
1147--------
1148*dracut*(8) *dracut.conf*(5)