Browse Source

dracut.conf: use "+=" as default for config variables

master
Harald Hoyer 14 years ago
parent
commit
d87c2708ec
  1. 6
      dracut
  2. 10
      dracut.conf
  3. 14
      dracut.conf.5

6
dracut

@ -138,12 +138,14 @@ fi @@ -138,12 +138,14 @@ fi
# source our config file
[[ -f $conffile ]] && . "$conffile"

# these optins add to the stuff in the config file
[[ $add_dracutmodules_l ]] && add_dracutmodules+=" $add_dracutmodules_l"
[[ $add_drivers_l ]] && add_drivers+=" $add_drivers_l"

# these options override the stuff in the config file
[[ $dracutmodules_l ]] && dracutmodules=$dracutmodules_l
[[ $omit_dracutmodules_l ]] && omit_dracutmodules=$omit_dracutmodules_l
[[ $add_dracutmodules_l ]] && add_dracutmodules="$add_dracutmodules $add_dracutmodules_l"
[[ $drivers_l ]] && drivers=$drivers_l
[[ $add_drivers_l ]] && add_drivers="$add_drivers $add_drivers_l"
[[ $filesystems_l ]] && filesystems=$filesystems_l
[[ $drivers_dir_l ]] && drivers_dir=$drivers_dir_l
[[ $fw_dir_l ]] && fw_dir=$fw_dir_l

10
dracut.conf

@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
# Sample dracut config file

# Specific list of dracut modules to use
#dracutmodules=""
#dracutmodules+=""

# Dracut modules to omit
#omit_dracutmodules=""
#omit_dracutmodules+=""

# Dracut modules to add to the default
#add_dracutmodules=""
#add_dracutmodules+=""

# additional kernel modules to the default
#add_drivers=""
#add_drivers+=""

# list of kernel filesystem modules to be included in the generic initramfs
#filesystems=""
#filesystems+=""

# build initrd only to boot current hardware
#hostonly="yes"

14
dracut.conf.5

@ -12,28 +12,28 @@ Command line parameter will overwrite any values set here. @@ -12,28 +12,28 @@ Command line parameter will overwrite any values set here.

.SH OPTIONS
.TP
.BR dracutmodules= \%"[LIST]"
.BR dracutmodules+= \%"[LIST]"
Specify a space-separated list of dracut modules to
call when building the initramfs. Modules are located
in /usr/share/dracut/modules.d.
.TP
.BR omit_dracutmodules= \%"[LIST]"
.BR omit_dracutmodules+= \%"[LIST]"
Omit a space-separated list of dracut modules.
.TP
.BR add_dracutmodules= \%"[LIST]"
.BR add_dracutmodules+= \%"[LIST]"
Add a space-separated list of dracut modules.
.TP
.BR drivers= \%"[LIST]"
.BR drivers+= \%"[LIST]"
Specify a space-separated list of kernel modules to
exclusively include in the initramfs.
The kernel modules have to be specified without the ".ko" suffix.
.TP
.BR add_drivers= \%"[LIST]"
.BR add_drivers+= \%"[LIST]"
Specify a space-separated list of kernel
modules to add to the initramfs.
The kernel modules have to be specified without the ".ko" suffix.
.TP
.BR filesystems= \%"[LIST]"
.BR filesystems+= \%"[LIST]"
Specify a space-separated list of kernel filesystem
modules to exclusively include in the generic
initramfs.
@ -41,7 +41,7 @@ initramfs. @@ -41,7 +41,7 @@ initramfs.
.BR drivers_dir= \%"<dir>"
Specify the directory, where to look for kernel modules
.TP
.BR fw_dir= \%"<dir>[:<dir>\ ...]"
.BR fw_dir+= \%":<dir>[:<dir>\ ...]"
Specify additional directories, where to look for firmwares, separated by :
.TP
.BR do_strip= \%"yes|no"

Loading…
Cancel
Save