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