diff --git a/.dracut.metadata b/.dracut.metadata
new file mode 100644
index 0000000..491ba7f
--- /dev/null
+++ b/.dracut.metadata
@@ -0,0 +1 @@
+b55aaf37ee1ab768877491530ba168b4bdf267ae SOURCES/dracut-033.tar.bz2
diff --git a/README.md b/README.md
deleted file mode 100644
index 0e7897f..0000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-The master branch has no content
- 
-Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6
- 
-If you find this file in a distro specific branch, it means that no content has been checked in yet
diff --git a/SOURCES/0001-dracut.sh-harden-host_modalias-reading.patch b/SOURCES/0001-dracut.sh-harden-host_modalias-reading.patch
new file mode 100644
index 0000000..a695138
--- /dev/null
+++ b/SOURCES/0001-dracut.sh-harden-host_modalias-reading.patch
@@ -0,0 +1,26 @@
+From 57f90974f9d7c11e06c2b3f2b7e4b47801f380cc Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 13 Sep 2013 16:33:01 +0200
+Subject: [PATCH] dracut.sh: harden host_modalias reading
+
+Some weird PPC driver make their modulias unreadable
+
+$ cat /sys/devices/vio/4000/modalias
+cat: /sys/devices/vio/4000/modalias: No such device
+---
+ dracut.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index bd905e3..fd27846 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -921,7 +921,7 @@ if [[ $hostonly ]]; then
+     declare -A host_modalias
+     find  /sys/devices/ -name modalias -print > "$initdir/.modalias"
+     while read m; do
+-        host_modalias["$(<"$m")"]=1
++        modalias="$(<"$m")" && [[ $modalias ]] && host_modalias["$modalias"]=1
+     done < "$initdir/.modalias"
+     rm -f -- "$initdir/.modalias"
+ 
diff --git a/SOURCES/0002-ifup-do-not-dhcp-on-network-interface-of-secondary-s.patch b/SOURCES/0002-ifup-do-not-dhcp-on-network-interface-of-secondary-s.patch
new file mode 100644
index 0000000..0a2a216
--- /dev/null
+++ b/SOURCES/0002-ifup-do-not-dhcp-on-network-interface-of-secondary-s.patch
@@ -0,0 +1,35 @@
+From 63f3bcd85245901515f4f45238301e030468cdc5 Mon Sep 17 00:00:00 2001
+From: WANG Chao <chaowang@redhat.com>
+Date: Fri, 13 Sep 2013 22:28:44 +0800
+Subject: [PATCH] ifup: do not dhcp on network interface of secondary stack
+
+Configure cmdline to:
+ ip=br0:dhcp bridge=br0:bond0 bond=bond0:eth0
+
+By default ifup bond0 will run dhcp on bond0, which is wrong. bond0
+isn't the top interface. we should really run dhcp on br0.
+
+So if we ifup an network interface on secondary stack, we should not
+dhcp. Fix this issue with this patch.
+---
+ modules.d/40network/ifup.sh | 7 +++++++
+ 1 file changed, 7 insertions(+)
+
+diff --git a/modules.d/40network/ifup.sh b/modules.d/40network/ifup.sh
+index 3261647..9f6f449 100755
+--- a/modules.d/40network/ifup.sh
++++ b/modules.d/40network/ifup.sh
+@@ -336,6 +336,13 @@ for p in $(getargs ip=); do
+     exit 0
+ done
+ 
++# netif isn't the top stack? Then we should exit here.
++# eg. netif is bond0. br0 is on top of it. dhcp br0 is correct but dhcp
++#     bond0 doesn't make sense.
++if [ -n "$DO_BOND_SETUP" -o -n "$DO_TEAM_SETUP" -o -n "$DO_VLAN_SETUP" ]; then
++    exit 0
++fi
++
+ # no ip option directed at our interface?
+ if [ ! -e /tmp/setup_net_${netif}.ok ]; then
+     do_dhcp -4
diff --git a/SOURCES/0003-dracut.sh-also-search-uevent-s-for-MODALIAS.patch b/SOURCES/0003-dracut.sh-also-search-uevent-s-for-MODALIAS.patch
new file mode 100644
index 0000000..364d08d
--- /dev/null
+++ b/SOURCES/0003-dracut.sh-also-search-uevent-s-for-MODALIAS.patch
@@ -0,0 +1,28 @@
+From fc68c87afa4fbe4c40abe4326df8cc7cfc9ac23d Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 13 Sep 2013 17:34:18 +0200
+Subject: [PATCH] dracut.sh: also search uevent's for MODALIAS
+
+---
+ dracut.sh | 8 ++++++++
+ 1 file changed, 8 insertions(+)
+
+diff --git a/dracut.sh b/dracut.sh
+index fd27846..ce39151 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -923,6 +923,14 @@ if [[ $hostonly ]]; then
+     while read m; do
+         modalias="$(<"$m")" && [[ $modalias ]] && host_modalias["$modalias"]=1
+     done < "$initdir/.modalias"
++    find  /sys/devices/ -name uevent -print > "$initdir/.modalias"
++    while read m; do
++        while read line; do
++            [[ "$line" != MODALIAS\=* ]] && continue
++            modalias="${line##MODALIAS=}" && [[ $modalias ]] && host_modalias["$modalias"]=1
++        done < "$m"
++    done < "$initdir/.modalias"
++
+     rm -f -- "$initdir/.modalias"
+ 
+     # check /proc/modules
diff --git a/SOURCES/0004-dracut.sh-we-don-t-need-to-read-the-modalias-files.patch b/SOURCES/0004-dracut.sh-we-don-t-need-to-read-the-modalias-files.patch
new file mode 100644
index 0000000..14dae30
--- /dev/null
+++ b/SOURCES/0004-dracut.sh-we-don-t-need-to-read-the-modalias-files.patch
@@ -0,0 +1,32 @@
+From 3b9aaaab429903ace447fa9ab585592c3343c6f0 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 13 Sep 2013 17:51:29 +0200
+Subject: [PATCH] dracut.sh: we don't need to read the modalias files
+
+udev does only parse the uevent MODALIAS line, so whatever is in the
+modalias files would not trigger any module load.
+---
+ dracut.sh | 5 +----
+ 1 file changed, 1 insertion(+), 4 deletions(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index ce39151..196b3ad 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -919,15 +919,12 @@ if [[ $hostonly ]]; then
+     fi
+     # record all host modaliases
+     declare -A host_modalias
+-    find  /sys/devices/ -name modalias -print > "$initdir/.modalias"
+-    while read m; do
+-        modalias="$(<"$m")" && [[ $modalias ]] && host_modalias["$modalias"]=1
+-    done < "$initdir/.modalias"
+     find  /sys/devices/ -name uevent -print > "$initdir/.modalias"
+     while read m; do
+         while read line; do
+             [[ "$line" != MODALIAS\=* ]] && continue
+             modalias="${line##MODALIAS=}" && [[ $modalias ]] && host_modalias["$modalias"]=1
++            break
+         done < "$m"
+     done < "$initdir/.modalias"
+ 
diff --git a/SOURCES/0005-Add-option-to-turn-on-off-prelinking.patch b/SOURCES/0005-Add-option-to-turn-on-off-prelinking.patch
new file mode 100644
index 0000000..f9d5136
--- /dev/null
+++ b/SOURCES/0005-Add-option-to-turn-on-off-prelinking.patch
@@ -0,0 +1,118 @@
+From f4a942783afae314afda3b0adcd33fc3ab2cd12c Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Tue, 17 Sep 2013 12:23:20 -0500
+Subject: [PATCH] Add option to turn on/off prelinking
+
+--prelink, --noprelink
+
+do_prelink=[yes|no]
+---
+ dracut.8.asc      |  6 ++++++
+ dracut.conf.5.asc |  3 +++
+ dracut.sh         | 34 ++++++++++++++++++++++------------
+ 3 files changed, 31 insertions(+), 12 deletions(-)
+
+diff --git a/dracut.8.asc b/dracut.8.asc
+index ee9d8de..76fc75c 100644
+--- a/dracut.8.asc
++++ b/dracut.8.asc
+@@ -269,6 +269,12 @@ example:
+ **--nostrip**::
+     do not strip binaries in the initramfs
+ 
++**--prelink**::
++    prelink binaries in the initramfs (default)
++
++**--noprelink**::
++    do not prelink binaries in the initramfs
++
+ **--hardlink**::
+     hardlink files in the initramfs (default)
+ 
+diff --git a/dracut.conf.5.asc b/dracut.conf.5.asc
+index a32516c..63991d4 100644
+--- a/dracut.conf.5.asc
++++ b/dracut.conf.5.asc
+@@ -67,6 +67,9 @@ Configuration files must have the extension .conf; other extensions are ignored.
+ *do_strip=*"__{yes|no}__"::
+     Strip binaries in the initramfs (default=yes)
+ 
++*do_prelink=*"__{yes|no}__"::
++    Prelink binaries in the initramfs (default=yes)
++
+ *hostonly=*"__{yes|no}__"::
+     Host-Only mode: Install only what is needed for booting the local host
+     instead of a generic host and generate host-specific configuration.
+diff --git a/dracut.sh b/dracut.sh
+index 196b3ad..177e66d 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -97,6 +97,8 @@ Creates initial ramdisk images for preloading modules
+   --kernel-cmdline [PARAMETERS] Specify default kernel command line parameters
+   --strip               Strip binaries in the initramfs
+   --nostrip             Do not strip binaries in the initramfs
++  --prelink             Prelink binaries in the initramfs
++  --noprelink           Do not prelink binaries in the initramfs
+   --hardlink            Hardlink files in the initramfs
+   --nohardlink          Do not hardlink files in the initramfs
+   --prefix [DIR]        Prefix initramfs files with [DIR]
+@@ -315,6 +317,8 @@ TEMP=$(unset POSIXLY_CORRECT; getopt \
+     --long kernel-cmdline: \
+     --long strip \
+     --long nostrip \
++    --long prelink \
++    --long noprelink \
+     --long hardlink \
+     --long nohardlink \
+     --long noprefix \
+@@ -394,6 +398,8 @@ while :; do
+         --no-early-microcode) early_microcode_l="no";;
+         --strip)       do_strip_l="yes";;
+         --nostrip)     do_strip_l="no";;
++        --prelink)     do_prelink_l="yes";;
++        --noprelink)   do_prelink_l="no";;
+         --hardlink)    do_hardlink_l="yes";;
+         --nohardlink)  do_hardlink_l="no";;
+         --noprefix)    prefix_l="/";;
+@@ -651,6 +657,8 @@ stdloglvl=$((stdloglvl + verbosity_mod_l))
+ [[ $drivers_dir_l ]] && drivers_dir=$drivers_dir_l
+ [[ $do_strip_l ]] && do_strip=$do_strip_l
+ [[ $do_strip ]] || do_strip=yes
++[[ $do_prelink_l ]] && do_prelink=$do_prelink_l
++[[ $do_prelink ]] || do_prelink=yes
+ [[ $do_hardlink_l ]] && do_hardlink=$do_hardlink_l
+ [[ $do_hardlink ]] || do_hardlink=yes
+ [[ $prefix_l ]] && prefix=$prefix_l
+@@ -1251,18 +1259,20 @@ if [[ $kernel_only != yes ]]; then
+     fi
+ fi
+ 
+-PRELINK_BIN="$(command -v prelink)"
+-if [[ $UID = 0 ]] && [[ $PRELINK_BIN ]]; then
+-    if [[ $DRACUT_FIPS_MODE ]]; then
+-        dinfo "*** Installing prelink files ***"
+-        inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf /etc/prelink.cache
+-    else
+-        dinfo "*** Pre-linking files ***"
+-        inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf
+-        chroot "$initdir" "$PRELINK_BIN" -a
+-        rm -f -- "$initdir/$PRELINK_BIN"
+-        rm -fr -- "$initdir"/etc/prelink.*
+-        dinfo "*** Pre-linking files done ***"
++if [[ $do_prelink == yes ]]; then
++    PRELINK_BIN="$(command -v prelink)"
++    if [[ $UID = 0 ]] && [[ $PRELINK_BIN ]]; then
++        if [[ $DRACUT_FIPS_MODE ]]; then
++            dinfo "*** Installing prelink files ***"
++            inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf /etc/prelink.cache
++        else
++            dinfo "*** Pre-linking files ***"
++            inst_multiple -o prelink /etc/prelink.conf /etc/prelink.conf.d/*.conf
++            chroot "$initdir" "$PRELINK_BIN" -a
++            rm -f -- "$initdir/$PRELINK_BIN"
++            rm -fr -- "$initdir"/etc/prelink.*
++            dinfo "*** Pre-linking files done ***"
++        fi
+     fi
+ fi
+ 
diff --git a/SOURCES/0006-add-etc-system-fips-for-dracut-fips-subpackage.patch b/SOURCES/0006-add-etc-system-fips-for-dracut-fips-subpackage.patch
new file mode 100644
index 0000000..f920d98
--- /dev/null
+++ b/SOURCES/0006-add-etc-system-fips-for-dracut-fips-subpackage.patch
@@ -0,0 +1,32 @@
+From 78d5cf7cb4e10d9e08ba5e89fe130fe5d7714b95 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 2 Oct 2013 12:36:25 +0200
+Subject: [PATCH] add /etc/system-fips for dracut-fips subpackage
+
+---
+ dracut.spec | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/dracut.spec b/dracut.spec
+index 87340d7..b1cf9fe 100644
+--- a/dracut.spec
++++ b/dracut.spec
+@@ -271,6 +271,10 @@ echo 'hostonly="no"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-generic-i
+ echo 'dracut_rescue_image="yes"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-rescue.conf
+ %endif
+ 
++%if 0%{?fedora} || 0%{?rhel} || 0%{?suse_version}
++> $RPM_BUILD_ROOT/etc/system-fips
++%endif
++
+ # create compat symlink
+ mkdir -p $RPM_BUILD_ROOT/sbin
+ ln -s /usr/bin/dracut $RPM_BUILD_ROOT/sbin/dracut
+@@ -413,6 +417,7 @@ rm -rf -- $RPM_BUILD_ROOT
+ %defattr(-,root,root,0755)
+ %{dracutlibdir}/modules.d/01fips
+ %{dracutlibdir}/dracut.conf.d/40-fips.conf
++%config(missingok) /etc/system-fips
+ %endif
+ 
+ %files fips-aesni
diff --git a/SOURCES/0007-dracut-Generlize-microcode-early-cpio-usage.patch b/SOURCES/0007-dracut-Generlize-microcode-early-cpio-usage.patch
new file mode 100644
index 0000000..6cf870d
--- /dev/null
+++ b/SOURCES/0007-dracut-Generlize-microcode-early-cpio-usage.patch
@@ -0,0 +1,69 @@
+From b5b608e44ade93bee54d274f5edc6aad6dc45288 Mon Sep 17 00:00:00 2001
+From: Thomas Renninger <trenn@suse.de>
+Date: Fri, 27 Sep 2013 20:10:37 +0200
+Subject: [PATCH] dracut: Generlize microcode early cpio usage
+
+ACPI early table override also may need to place files into an early cpio.
+Reflect this in variable and file names.
+This change is renaming only and does not introduce any real change.
+
+Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
+Signed-off-by: Thomas Renninger <trenn@suse.de>
+---
+ dracut.sh | 17 +++++++++--------
+ 1 file changed, 9 insertions(+), 8 deletions(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index 177e66d..b3b8088 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -704,9 +704,9 @@ readonly initdir="$(mktemp --tmpdir="$TMPDIR/" -d -t initramfs.XXXXXX)"
+ }
+ 
+ if [[ $early_microcode = yes ]]; then
+-    readonly microcode_dir="$(mktemp --tmpdir="$TMPDIR/" -d -t early_microcode.XXXXXX)"
+-    [ -d "$microcode_dir" ] || {
+-        printf "%s\n" "dracut: mktemp --tmpdir=\"$TMPDIR/\" -d -t early_microcode.XXXXXX failed." >&2
++    readonly early_cpio_dir="$(mktemp --tmpdir="$TMPDIR/" -d -t early_cpio.XXXXXX)"
++    [ -d "$early_cpio_dir" ] || {
++        printf "%s\n" "dracut: mktemp --tmpdir=\"$TMPDIR/\" -d -t early_cpio.XXXXXX failed." >&2
+         exit 1
+     }
+ fi
+@@ -715,7 +715,7 @@ trap '
+     ret=$?;
+     [[ $outfile ]] && [[ -f $outfile.$$ ]] && rm -f -- "$outfile.$$";
+     [[ $keep ]] && echo "Not removing $initdir." >&2 || { [[ $initdir ]] && rm -rf -- "$initdir"; };
+-    [[ $keep ]] && echo "Not removing $microcode_dir." >&2 || { [[ $microcode_dir ]] && rm -Rf -- "$microcode_dir"; };
++    [[ $keep ]] && echo "Not removing $early_cpio_dir." >&2 || { [[ $early_cpio_dir ]] && rm -Rf -- "$early_cpio_dir"; };
+     [[ $_dlogdir ]] && rm -Rf -- "$_dlogdir";
+     exit $ret;
+     ' EXIT
+@@ -1311,7 +1311,7 @@ if [[ $early_microcode = yes ]]; then
+     dinfo "*** Generating early-microcode cpio image ***"
+     ucode_dir=(amd-ucode intel-ucode)
+     ucode_dest=(AuthenticAMD.bin GenuineIntel.bin)
+-    _dest_dir="$microcode_dir/d/kernel/x86/microcode"
++    _dest_dir="$early_cpio_dir/d/kernel/x86/microcode"
+     _dest_idx="0 1"
+     mkdir -p $_dest_dir
+     if [[ $hostonly ]]; then
+@@ -1331,14 +1331,15 @@ if [[ $early_microcode = yes ]]; then
+             fi
+         done
+     done
+-    (cd "$microcode_dir/d"; find . -print0 | cpio --null -o -H newc --quiet >../ucode.cpio)
++    create_early_cpio="yes"
+ fi
+ 
+ rm -f -- "$outfile"
+ dinfo "*** Creating image file ***"
+-if [[ $early_microcode = yes ]]; then
++if [[ $create_early_cpio = yes ]]; then
+     # The microcode blob is _before_ the initramfs blob, not after
+-    mv $microcode_dir/ucode.cpio $outfile.$$
++    (cd "$early_cpio_dir/d"; find . -print0 | cpio --null -o -H newc --quiet >../early.cpio)
++    mv $early_cpio_dir/early.cpio $outfile.$$
+ fi
+ if ! ( umask 077; cd "$initdir"; find . -print0 | cpio --null -R 0:0 -H newc -o --quiet| \
+     $compress >> "$outfile.$$"; ); then
diff --git a/SOURCES/0008-dracut-Do-not-create-early_cpio-if-no-suitable-micro.patch b/SOURCES/0008-dracut-Do-not-create-early_cpio-if-no-suitable-micro.patch
new file mode 100644
index 0000000..e391ba7
--- /dev/null
+++ b/SOURCES/0008-dracut-Do-not-create-early_cpio-if-no-suitable-micro.patch
@@ -0,0 +1,44 @@
+From d8b04dc1840047a7533d19f577f30f19d42e2d33 Mon Sep 17 00:00:00 2001
+From: Thomas Renninger <trenn@suse.de>
+Date: Fri, 27 Sep 2013 20:10:38 +0200
+Subject: [PATCH] dracut: Do not create early_cpio if no suitable microcode
+ exist in hostonly case
+
+Intel microcodes only exist for very specific family/model/stepping CPUs.
+If no microcode gets added, there is no need to create an empty
+(only directories) cpio later that gets glued to the initrd.
+
+This also fixes:
+
+*** Constructing GenuineIntel.bin ****
+cat: /lib/firmware/intel-ucode/06-3c-03: No such file or directory
+
+in hostonly mode if there is no suitable microcode for the CPU.
+
+Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
+Signed-off-by: Thomas Renninger <trenn@suse.de>
+---
+ dracut.sh | 5 ++++-
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index b3b8088..e43227e 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -1326,12 +1326,15 @@ if [[ $early_microcode = yes ]]; then
+                 dinfo "*** Constructing ${ucode_dest[$idx]} ****"
+                 if [[ $hostonly ]]; then
+                     _src=$(get_ucode_file)
++                    if ! [[ -r $_fwdir/$_fw/$_src ]];then
++                        break;
++                    fi
+                 fi
+                 cat $_fwdir/$_fw/$_src > $_dest_dir/${ucode_dest[$idx]}
++                create_early_cpio="yes"
+             fi
+         done
+     done
+-    create_early_cpio="yes"
+ fi
+ 
+ rm -f -- "$outfile"
diff --git a/SOURCES/0009-dracut-Implement-ACPI-table-overriding.patch b/SOURCES/0009-dracut-Implement-ACPI-table-overriding.patch
new file mode 100644
index 0000000..6636287
--- /dev/null
+++ b/SOURCES/0009-dracut-Implement-ACPI-table-overriding.patch
@@ -0,0 +1,45 @@
+From f3b14c2b6a852d21fc6fa1fd86959a3818624a36 Mon Sep 17 00:00:00 2001
+From: Thomas Renninger <trenn@suse.de>
+Date: Fri, 27 Sep 2013 20:10:39 +0200
+Subject: [PATCH] dracut: Implement ACPI table overriding
+
+An example config file for this feature could be:
+
+/etc/dracut.conf.d/03-acpi-override.conf
+
+with this content:
+acpi_override="yes"
+acpi_table_dir="/etc/dracut.conf.d/acpi_tables"
+
+Then all files ending with *.aml will be put into the early cpio
+(kernel/firmware/acpi) and will be used to replace the BIOS provided tables
+if the kernel supports this feature.
+
+Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
+Signed-off-by: Thomas Renninger <trenn@suse.de>
+---
+ dracut.sh | 11 +++++++++++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/dracut.sh b/dracut.sh
+index e43227e..b4b3e13 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -1337,6 +1337,17 @@ if [[ $early_microcode = yes ]]; then
+     done
+ fi
+ 
++if [[ $acpi_override = yes ]] && [[ -d $acpi_table_dir ]]; then
++    dinfo "*** Packaging ACPI tables to override BIOS provided ones ***"
++    _dest_dir="$early_cpio_dir/d/kernel/firmware/acpi"
++    mkdir -p $_dest_dir
++    for table in $acpi_table_dir/*.aml; do
++        dinfo "   Adding ACPI table: $table"
++        cp $table $_dest_dir
++        create_early_cpio="yes"
++    done
++fi
++
+ rm -f -- "$outfile"
+ dinfo "*** Creating image file ***"
+ if [[ $create_early_cpio = yes ]]; then
diff --git a/SOURCES/0010-dracut.conf.5.asc-Add-ACPI-table-override-and-uncomp.patch b/SOURCES/0010-dracut.conf.5.asc-Add-ACPI-table-override-and-uncomp.patch
new file mode 100644
index 0000000..dd46f37
--- /dev/null
+++ b/SOURCES/0010-dracut.conf.5.asc-Add-ACPI-table-override-and-uncomp.patch
@@ -0,0 +1,37 @@
+From 4e93c3f7079305114779a4bf2adefdbd429a9701 Mon Sep 17 00:00:00 2001
+From: Thomas Renninger <trenn@suse.de>
+Date: Fri, 27 Sep 2013 20:10:40 +0200
+Subject: [PATCH] dracut.conf.5.asc: Add ACPI table override and uncompressed
+ cpio doc
+
+Signed-off-by: Thomas Renninger <trenn@suse.de>
+---
+ dracut.conf.5.asc | 15 +++++++++++++++
+ 1 file changed, 15 insertions(+)
+
+diff --git a/dracut.conf.5.asc b/dracut.conf.5.asc
+index 63991d4..c9c854a 100644
+--- a/dracut.conf.5.asc
++++ b/dracut.conf.5.asc
+@@ -125,6 +125,21 @@ If chrooted to another root other than the real root device, use --fstab and pro
+ *no_kernel=*"{yes|no}"::
+     Do not install kernel drivers and firmware files (default=no)
+ 
++*acpi_override=*"{yes|no}"::
++    [WARNING] ONLY USE THIS IF YOU KNOW WHAT YOU ARE DOING! +
++    Override BIOS provided ACPI tables. For further documentation read
++    Documentation/acpi/initrd_table_override.txt in the kernel sources.
++    Search for ACPI table files (must have .aml suffix) in acpi_table_dir=
++    directory (see below) and add them to a separate uncompressed cpio
++    archive. This cpio archive gets glued (concatenated, uncompressed one
++    must be the first one) to the compressed cpio archive. The first,
++    uncompressed cpio archive is for data which the kernel must be able
++    to access very early (and cannot make use of uncompress alogrithms yet)
++    like microcode or ACPI tables (default=no).
++
++*acpi_table_dir=*"__<dir>__"::
++    Directory to search for ACPI tables if acpi_override= is set to yes.
++
+ *early_microcode=*"{yes|no}"::
+     Combine early microcode with ramdisk (default=no)
+ 
diff --git a/SOURCES/0011-dracut-bash-completion.sh-add-prelink-noprelink.patch b/SOURCES/0011-dracut-bash-completion.sh-add-prelink-noprelink.patch
new file mode 100644
index 0000000..cb26fe9
--- /dev/null
+++ b/SOURCES/0011-dracut-bash-completion.sh-add-prelink-noprelink.patch
@@ -0,0 +1,22 @@
+From b19bdcbea7dd2f95fefb7ceea6d6252091c6e9b8 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 2 Oct 2013 12:47:34 +0200
+Subject: [PATCH] dracut-bash-completion.sh: add --prelink --noprelink
+
+---
+ dracut-bash-completion.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/dracut-bash-completion.sh b/dracut-bash-completion.sh
+index f822058..d796c35 100644
+--- a/dracut-bash-completion.sh
++++ b/dracut-bash-completion.sh
+@@ -34,7 +34,7 @@ _dracut() {
+                               --local --hostonly --no-hostonly --fstab --help --bzip2 --lzma
+                               --xz --no-compress --gzip --list-modules --show-modules --keep
+                               --printsize --regenerate-all --noimageifnotneeded --early-microcode
+-                              --no-early-microcode --print-cmdline'
++                              --no-early-microcode --print-cmdline --prelink --noprelink'
+ 
+                        [ARG]='-a -m -o -d -I -k -c -L --kver --add --force-add --add-drivers
+                               --omit-drivers --modules --omit --drivers --filesystems --install
diff --git a/SOURCES/0012-dracut.sh-bail-out-early-if-destination-dir-is-not-w.patch b/SOURCES/0012-dracut.sh-bail-out-early-if-destination-dir-is-not-w.patch
new file mode 100644
index 0000000..fc94468
--- /dev/null
+++ b/SOURCES/0012-dracut.sh-bail-out-early-if-destination-dir-is-not-w.patch
@@ -0,0 +1,64 @@
+From 96cf7270da8f99e3972b18677e7f392a35d6ddd9 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 2 Oct 2013 12:48:11 +0200
+Subject: [PATCH] dracut.sh: bail out early, if destination dir is not
+ writeable
+
+---
+ dracut.sh | 36 +++++++++++++++++++-----------------
+ 1 file changed, 19 insertions(+), 17 deletions(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index b4b3e13..e135dfc 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -824,9 +824,25 @@ if [[ -d $srcmods ]]; then
+     }
+ fi
+ 
+-if [[ -f $outfile && ! $force && ! $print_cmdline ]]; then
+-    dfatal "Will not override existing initramfs ($outfile) without --force"
+-    exit 1
++if [[ ! $print_cmdline ]]; then
++    if [[ -f $outfile && ! $force ]]; then
++        dfatal "Will not override existing initramfs ($outfile) without --force"
++        exit 1
++    fi
++
++    outdir=${outfile%/*}
++    [[ $outdir ]] || outdir="/"
++
++    if [[ ! -d "$outdir" ]]; then
++        dfatal "Can't write to $outdir: Directory $outdir does not exist or is not accessible."
++        exit 1
++    elif [[ ! -w "$outdir" ]]; then
++        dfatal "No permission to write to $outdir."
++        exit 1
++    elif [[ -f "$outfile" && ! -w "$outfile" ]]; then
++        dfatal "No permission to write $outfile."
++        exit 1
++    fi
+ fi
+ 
+ # Need to be able to have non-root users read stuff (rpcbind etc)
+@@ -1041,20 +1057,6 @@ if [[ $print_cmdline ]]; then
+     exit 0
+ fi
+ 
+-outdir=${outfile%/*}
+-[[ $outdir ]] || outdir="/"
+-
+-if [[ ! -d "$outdir" ]]; then
+-    dfatal "Can't write to $outdir: Directory $outdir does not exist or is not accessible."
+-    exit 1
+-elif [[ ! -w "$outdir" ]]; then
+-    dfatal "No permission to write to $outdir."
+-    exit 1
+-elif [[ -f "$outfile" && ! -w "$outfile" ]]; then
+-    dfatal "No permission to write $outfile."
+-    exit 1
+-fi
+-
+ # Create some directory structure first
+ [[ $prefix ]] && mkdir -m 0755 -p "${initdir}${prefix}"
+ 
diff --git a/SOURCES/0013-dracut-logger.sh-do-not-log-to-syslog-kmsg-journal-f.patch b/SOURCES/0013-dracut-logger.sh-do-not-log-to-syslog-kmsg-journal-f.patch
new file mode 100644
index 0000000..9db820f
--- /dev/null
+++ b/SOURCES/0013-dracut-logger.sh-do-not-log-to-syslog-kmsg-journal-f.patch
@@ -0,0 +1,44 @@
+From 283d385fbd7a715e75be4a6b94f82f4692f7024b Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 2 Oct 2013 12:48:57 +0200
+Subject: [PATCH] dracut-logger.sh: do not log to syslog/kmsg/journal for UID
+ != 0
+
+Don't clutter the system log with user actions.
+
+Also check, if systemd-cat works, before using it.
+---
+ dracut-logger.sh | 10 ++++++++--
+ 1 file changed, 8 insertions(+), 2 deletions(-)
+
+diff --git a/dracut-logger.sh b/dracut-logger.sh
+index b052581..f679dc9 100755
+--- a/dracut-logger.sh
++++ b/dracut-logger.sh
+@@ -140,11 +140,16 @@ dlog_init() {
+         fi
+     fi
+ 
++    if (( $UID  != 0 )); then
++        kmsgloglvl=0
++        sysloglvl=0
++    fi
++
+     if (( $sysloglvl > 0 )); then
+         if [[ -d /run/systemd/journal ]] \
+             && type -P systemd-cat &>/dev/null \
+-            && (( $UID  == 0 )) \
+-            && systemctl is-active systemd-journald.socket  &>/dev/null; then
++            && systemctl --quiet is-active systemd-journald.socket &>/dev/null \
++            && { echo "dracut-$DRACUT_VERSION" | systemd-cat -t 'dracut' &>/dev/null; } ; then
+             readonly _dlogdir="$(mktemp --tmpdir="$TMPDIR/" -d -t dracut-log.XXXXXX)"
+             readonly _systemdcatfile="$_dlogdir/systemd-cat"
+             mkfifo "$_systemdcatfile"
+@@ -153,6 +158,7 @@ dlog_init() {
+             exec 15>"$_systemdcatfile"
+         elif ! [ -S /dev/log -a -w /dev/log ] || ! command -v logger >/dev/null; then
+             # We cannot log to syslog, so turn this facility off.
++            kmsgloglvl=$sysloglvl
+             sysloglvl=0
+             ret=1
+             errmsg="No '/dev/log' or 'logger' included for syslog logging"
diff --git a/SOURCES/0014-lvm-mdraid-Fix-LVM-on-MD-activation.patch b/SOURCES/0014-lvm-mdraid-Fix-LVM-on-MD-activation.patch
new file mode 100644
index 0000000..2c015cd
--- /dev/null
+++ b/SOURCES/0014-lvm-mdraid-Fix-LVM-on-MD-activation.patch
@@ -0,0 +1,43 @@
+From f7289bcdab744f67b8c858bdf61cf08226e5b148 Mon Sep 17 00:00:00 2001
+From: Peter Rajnoha <prajnoha@redhat.com>
+Date: Fri, 4 Oct 2013 10:41:24 +0200
+Subject: [PATCH] lvm/mdraid: Fix LVM on MD activation
+
+The 69-dm-lvm-metad.rules set some udev env. variables that makes it
+possible to detect the right time to activate LVM on MD. The MD is very
+similar to DM during activation - it's usable only after proper device
+activation - the CHANGE event. We need to make a difference between a
+CHANGE event that comes from this activation and CHANGE event that is
+the outcome of the WATCH udev rule (otherwise we'd end up with LVM
+activation done on each CHANGE event - which is wrong).
+
+So we need the udev databse to be persistent during pivot to root fs
+even for MD devices.
+---
+ modules.d/90lvm/module-setup.sh                   | 2 +-
+ modules.d/90mdraid/59-persistent-storage-md.rules | 1 +
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/modules.d/90lvm/module-setup.sh b/modules.d/90lvm/module-setup.sh
+index 2ef9a51..f98ffff 100755
+--- a/modules.d/90lvm/module-setup.sh
++++ b/modules.d/90lvm/module-setup.sh
+@@ -82,7 +82,7 @@ install() {
+         } > "${initdir}/etc/lvm/lvm.conf"
+     fi
+ 
+-    inst_rules 11-dm-lvm.rules
++    inst_rules 11-dm-lvm.rules 69-dm-lvm-metad.rules
+     # Gentoo ebuild for LVM2 prior to 2.02.63-r1 doesn't install above rules
+     # files, but provides the one below:
+     inst_rules 64-device-mapper.rules
+diff --git a/modules.d/90mdraid/59-persistent-storage-md.rules b/modules.d/90mdraid/59-persistent-storage-md.rules
+index bea9325..6ef858a 100644
+--- a/modules.d/90mdraid/59-persistent-storage-md.rules
++++ b/modules.d/90mdraid/59-persistent-storage-md.rules
+@@ -20,4 +20,5 @@ IMPORT{program}="/sbin/mdadm --detail --export $tempnode"
+ IMPORT BLKID
+ OPTIONS+="link_priority=100"
+ OPTIONS+="watch"
++OPTIONS+="db_persist"
+ LABEL="md_end"
diff --git a/SOURCES/0015-bcache-optionally-install-the-tools-and-rules.patch b/SOURCES/0015-bcache-optionally-install-the-tools-and-rules.patch
new file mode 100644
index 0000000..68fe47b
--- /dev/null
+++ b/SOURCES/0015-bcache-optionally-install-the-tools-and-rules.patch
@@ -0,0 +1,24 @@
+From 1fab351da0368e3da0ee0e883d58b4f53455af1e Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 9 Oct 2013 09:50:15 +0200
+Subject: [PATCH] bcache: optionally install the tools and rules
+
+---
+ modules.d/90bcache/module-setup.sh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/modules.d/90bcache/module-setup.sh b/modules.d/90bcache/module-setup.sh
+index b02b8b4..a5a57ed 100755
+--- a/modules.d/90bcache/module-setup.sh
++++ b/modules.d/90bcache/module-setup.sh
+@@ -27,7 +27,7 @@ installkernel() {
+ }
+ 
+ install() {
+-    blkid -k | { while read line; do [[ $line == bcache ]] && exit 0; done; exit 1; } || inst_multiple probe-bcache
+-    inst_multiple ${udevdir}/bcache-register
+-    inst_rules 61-bcache.rules
++    blkid -k | { while read line; do [[ $line == bcache ]] && exit 0; done; exit 1; } || inst_multiple -o probe-bcache
++    inst_multiple -o ${udevdir}/bcache-register
++    inst_rules 61-bcache.rules 69-bcache.rules
+ }
diff --git a/SOURCES/0016-dracut-functions.sh-inst_rules-do-not-install-rules-.patch b/SOURCES/0016-dracut-functions.sh-inst_rules-do-not-install-rules-.patch
new file mode 100644
index 0000000..a140e40
--- /dev/null
+++ b/SOURCES/0016-dracut-functions.sh-inst_rules-do-not-install-rules-.patch
@@ -0,0 +1,25 @@
+From 400921d48bf71add0387a6f3ebdec83f32843f1d Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 4 Oct 2013 13:32:15 +0200
+Subject: [PATCH] dracut-functions.sh:inst_rules() do not install rules in CWD
+
+---
+ dracut-functions.sh | 5 ++++-
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/dracut-functions.sh b/dracut-functions.sh
+index cf33af5..45e0911 100755
+--- a/dracut-functions.sh
++++ b/dracut-functions.sh
+@@ -882,7 +882,10 @@ inst_rules() {
+                 fi
+             done
+         fi
+-        for r in '' ./ $dracutbasedir/rules.d/; do
++        for r in '' $dracutbasedir/rules.d/; do
++            # skip rules without an absolute path
++            [[ "${r}$_rule" != /* ]] && continue
++
+             if [[ -f ${r}$_rule ]]; then
+                 _found="${r}$_rule"
+                 inst_rule_programs "$_found"
diff --git a/SOURCES/0017-mdraid-module-setup.sh-install-configs-from-etc-mdad.patch b/SOURCES/0017-mdraid-module-setup.sh-install-configs-from-etc-mdad.patch
new file mode 100644
index 0000000..ad63414
--- /dev/null
+++ b/SOURCES/0017-mdraid-module-setup.sh-install-configs-from-etc-mdad.patch
@@ -0,0 +1,30 @@
+From 07708515828f8f8cf0e64c90af46ef5dbf2854f6 Mon Sep 17 00:00:00 2001
+From: Alexander Tsoy <alexander@tsoy.me>
+Date: Thu, 3 Oct 2013 14:54:42 +0400
+Subject: [PATCH] mdraid/module-setup.sh: install configs from
+ /etc/mdadm.conf.d
+
+/etc/mdadm.conf.d directory is supported since mdadm-3.3
+---
+ modules.d/90mdraid/module-setup.sh | 8 ++++++++
+ 1 file changed, 8 insertions(+)
+
+diff --git a/modules.d/90mdraid/module-setup.sh b/modules.d/90mdraid/module-setup.sh
+index 5df2274..45767c6 100755
+--- a/modules.d/90mdraid/module-setup.sh
++++ b/modules.d/90mdraid/module-setup.sh
+@@ -93,6 +93,14 @@ install() {
+         else
+             [ -f /etc/mdadm/mdadm.conf ] && inst /etc/mdadm/mdadm.conf /etc/mdadm.conf
+         fi
++        if [ -d /etc/mdadm.conf.d ]; then
++            local f
++            inst_dir /etc/mdadm.conf.d
++            for f in /etc/mdadm.conf.d/*.conf; do
++                [ -f "$f" ] || continue
++                inst "$f"
++            done
++        fi
+     fi
+ 
+     inst_hook pre-udev 30 "$moddir/mdmon-pre-udev.sh"
diff --git a/SOURCES/0018-mdraid-module-setup.sh-fixes-for-mdadm-3.2.6.patch b/SOURCES/0018-mdraid-module-setup.sh-fixes-for-mdadm-3.2.6.patch
new file mode 100644
index 0000000..06b41d6
--- /dev/null
+++ b/SOURCES/0018-mdraid-module-setup.sh-fixes-for-mdadm-3.2.6.patch
@@ -0,0 +1,51 @@
+From 9347898404ad1f8f0c11be9c5f13255a04d5e275 Mon Sep 17 00:00:00 2001
+From: Alexander Tsoy <alexander@tsoy.me>
+Date: Sun, 29 Sep 2013 01:31:01 +0400
+Subject: [PATCH] mdraid/module-setup.sh: fixes for mdadm-3.2.6+
+
+mdadm-3.2.6+:
+Incremental assembly rule contains "--offroot" arg. Update
+regexp to catch this variant.
+
+mdadm-3.3+:
+Rules was splitted into two files: 63-md-raid-arrays.rules
+and 64-md-raid-assembly.rules. Install them both and edit
+the latter.
+---
+ modules.d/90mdraid/module-setup.sh | 11 ++++++++++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+diff --git a/modules.d/90mdraid/module-setup.sh b/modules.d/90mdraid/module-setup.sh
+index 45767c6..34aae1e 100755
+--- a/modules.d/90mdraid/module-setup.sh
++++ b/modules.d/90mdraid/module-setup.sh
+@@ -59,6 +59,7 @@ cmdline() {
+ }
+ 
+ install() {
++    local rule rule_path
+     inst_multiple cat
+     inst_multiple -o mdmon
+     inst $(command -v partx) /sbin/partx
+@@ -67,12 +68,20 @@ install() {
+     cmdline  >> "${initdir}/etc/cmdline.d/90mdraid.conf"
+     echo  >> "${initdir}/etc/cmdline.d/90mdraid.conf"
+ 
++    # <mdadm-3.3 udev rule
+     inst_rules 64-md-raid.rules
++    # >=mdadm-3.3 udev rules
++    inst_rules 63-md-raid-arrays.rules 64-md-raid-assembly.rules
+     # remove incremental assembly from stock rules, so they don't shadow
+     # 65-md-inc*.rules and its fine-grained controls, or cause other problems
+     # when we explicitly don't want certain components to be incrementally
+     # assembled
+-    sed -i -r -e '/RUN\+?="[[:alpha:]/]*mdadm[[:blank:]]+(--incremental|-I)[[:blank:]]+(\$env\{DEVNAME\}|\$tempnode)"/d' "${initdir}${udevdir}/rules.d/64-md-raid.rules"
++    for rule in 64-md-raid.rules 64-md-raid-assembly.rules; do
++        rule_path="${initdir}${udevdir}/rules.d/${rule}"
++        [ -f "${rule_path}" ] && sed -i -r \
++            -e '/RUN\+?="[[:alpha:]/]*mdadm[[:blank:]]+(--incremental|-I)[[:blank:]]+(\$env\{DEVNAME\}|\$tempnode|\$devnode)/d' \
++            "${rule_path}"
++    done
+ 
+     inst_rules "$moddir/65-md-incremental-imsm.rules"
+ 
diff --git a/SOURCES/0019-fcoe-add-FCoE-UEFI-boot-device-support.patch b/SOURCES/0019-fcoe-add-FCoE-UEFI-boot-device-support.patch
new file mode 100644
index 0000000..86bec54
--- /dev/null
+++ b/SOURCES/0019-fcoe-add-FCoE-UEFI-boot-device-support.patch
@@ -0,0 +1,240 @@
+From cda71132a633b0c49733939179fcbeb7b5de1305 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 7 Oct 2013 14:24:36 +0200
+Subject: [PATCH] fcoe: add FCoE UEFI boot device support
+
+---
+ modules.d/95fcoe/module-setup.sh   |   1 +
+ modules.d/95fcoe/parse-uefifcoe.sh |  35 +++++++++
+ modules.d/99base/module-setup.sh   |   1 +
+ modules.d/99base/uefi-lib.sh       | 155 +++++++++++++++++++++++++++++++++++++
+ 4 files changed, 192 insertions(+)
+ create mode 100755 modules.d/95fcoe/parse-uefifcoe.sh
+ create mode 100755 modules.d/99base/uefi-lib.sh
+
+diff --git a/modules.d/95fcoe/module-setup.sh b/modules.d/95fcoe/module-setup.sh
+index d3c58cc..08ba4ea 100755
+--- a/modules.d/95fcoe/module-setup.sh
++++ b/modules.d/95fcoe/module-setup.sh
+@@ -32,6 +32,7 @@ install() {
+     inst "$moddir/fcoe-up.sh" "/sbin/fcoe-up"
+     inst "$moddir/fcoe-edd.sh" "/sbin/fcoe-edd"
+     inst "$moddir/fcoe-genrules.sh" "/sbin/fcoe-genrules.sh"
++    inst_hook cmdline 20 "$moddir/parse-uefifcoe.sh"
+     inst_hook cmdline 99 "$moddir/parse-fcoe.sh"
+     dracut_need_initqueue
+ }
+diff --git a/modules.d/95fcoe/parse-uefifcoe.sh b/modules.d/95fcoe/parse-uefifcoe.sh
+new file mode 100755
+index 0000000..e03bcb3
+--- /dev/null
++++ b/modules.d/95fcoe/parse-uefifcoe.sh
+@@ -0,0 +1,35 @@
++#!/bin/bash
++# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
++# ex: ts=8 sw=4 sts=4 et filetype=sh
++
++command -v getarg >/dev/null          || . /lib/dracut-lib.sh
++command -v get_fcoe_boot_mac >/dev/null || . /lib/uefi-lib.sh
++command -v set_ifname >/dev/null || . /lib/net-lib.sh
++
++print_fcoe_uefi_conf()
++{
++    local mac dev vlan
++    mac=$(get_fcoe_boot_mac)
++    [ -z "$mac" ] && continue
++    dev=$(set_ifname fcoe $mac)
++    vlan=$(get_fcoe_boot_vlan)
++    if [ "$vlan" -ne "0" ]; then
++        case "$vlan" in
++            [0-9]*)
++                printf "%s\n" "vlan=$dev.$vlan:$dev"
++                dev="$dev.$vlan"
++                ;;
++            *)
++                printf "%s\n" "vlan=$vlan:$dev"
++                dev="$vlan"
++                ;;
++        esac
++    fi
++    # fcoe=eth0:nodcb
++    printf "%s\n" "$dev:nodcb"
++}
++
++
++if [ -e /sys/firmware/efi/vars/FcoeBootDevice-a0ebca23-5f9c-447a-a268-22b6c158c2ac/data ]; then
++    print_fcoe_uefi_conf > /etc/cmdline.d/40-fcoe-uefi.conf
++fi
+diff --git a/modules.d/99base/module-setup.sh b/modules.d/99base/module-setup.sh
+index 52ce400..d33a0fb 100755
+--- a/modules.d/99base/module-setup.sh
++++ b/modules.d/99base/module-setup.sh
+@@ -42,6 +42,7 @@ install() {
+     mkdir -p ${initdir}/tmp
+ 
+     inst_simple "$moddir/dracut-lib.sh" "/lib/dracut-lib.sh"
++    inst_simple "$moddir/uefi-lib.sh" "/lib/uefi-lib.sh"
+ 
+     if ! dracut_module_included "systemd"; then
+         inst_multiple switch_root || dfatal "Failed to install switch_root"
+diff --git a/modules.d/99base/uefi-lib.sh b/modules.d/99base/uefi-lib.sh
+new file mode 100755
+index 0000000..faedbac
+--- /dev/null
++++ b/modules.d/99base/uefi-lib.sh
+@@ -0,0 +1,155 @@
++#!/bin/bash
++# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
++# ex: ts=8 sw=4 sts=4 et filetype=sh
++#
++# Copyright 2013 Red Hat, Inc.  All rights reserved.
++# Copyright 2013 Harald Hoyer <harald@redhat.com>
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++#
++# You should have received a copy of the GNU General Public License
++# along with this program.  If not, see <http://www.gnu.org/licenses/>.
++#
++
++getbyte () {
++    local IFS= LC_CTYPE=C res c
++    read -r -n 1 -d '' c
++    res=$?
++    # the single quote in the argument of the printf
++    # yields the numeric value of $c (ASCII since LC_CTYPE=C)
++    [[ -n $c ]] && c=$(printf '%u' "'$c") || c=0
++    printf "$c"
++    return $res
++}
++
++getword () {
++    local b1 b2 val
++    b1=$(getbyte) || return 1
++    b2=$(getbyte) || return 1
++    (( val = b2 * 256 + b1 ))
++    echo $val
++    return 0
++}
++
++# Acpi(PNP0A08,0x0)/Pci(0x3,0x0)/Pci(0x0,0x0)/MAC(90E2BA265ED4,0x0)/Vlan(172)/Fibre(0x4EA06104A0CC0050,0x0)
++uefi_device_path()
++{
++    local IFS= LC_CTYPE=C res tt len type hextype first
++    first=1
++
++    while :; do
++        type=$(getbyte) || return 1
++        subtype=$(getbyte) || return 1
++        len=$(getword) || return 1
++        hextype=$(printf "%02x%02x" "$type" "$subtype")
++        if [[ $first == 1 ]]; then
++            first=0
++        elif [[ $hextype != "7fff" ]]; then
++            printf "/"
++        fi
++        case $hextype in
++            0101)
++                # PCI
++                tt=$(getword)
++                printf "PCI(0x%x,0x%x)" $(($tt / 256)) $(($tt & 255))
++                ;;
++            0201)
++                # ACPI
++                printf "Acpi(0x%x,0x%x)" $(($(getword) + $(getword) * 65536)) $(($(getword) + $(getword) * 65536))
++                ;;
++            0303)
++                # FIBRE
++                getword &>/dev/null
++                getword &>/dev/null
++                printf "Fibre(0x%x%x%x%x%x%x%x%x,0x%x)" \
++                    $(getbyte) $(getbyte) $(getbyte) $(getbyte) \
++                    $(getbyte) $(getbyte) $(getbyte) $(getbyte) \
++                    $(( $(getword) + $(getword) * 65536 + 4294967296 * ( $(getword) + $(getword) * 65536 ) ))
++                ;;
++            030b)
++                # MAC
++                printf "MAC(%02x%02x%02x%02x%02x%02x," $(getbyte) $(getbyte) $(getbyte) $(getbyte) $(getbyte) $(getbyte)
++                read -r -N 26  tt || return 1
++                printf "0x%x)"  $(getbyte)
++                ;;
++            0314)
++                # VLAN
++                printf "VLAN(%d)" $(getword)
++                ;;
++            7fff)
++                # END
++                printf "\n"
++                return 0
++                ;;
++            *)
++                printf "Unknown(Type:%d SubType:%d len=%d)" "$type" "$subtype" "$len"
++                read -r -N $(($len-4))  tt || return 1
++                ;;
++        esac
++    done
++}
++
++get_fcoe_boot_mac()
++{
++    data=${1:-/sys/firmware/efi/vars/FcoeBootDevice-a0ebca23-5f9c-447a-a268-22b6c158c2ac/data}
++    [ -f $data ] || return 1
++    local IFS= LC_CTYPE=C tt len type hextype
++    first=1
++
++    while :; do
++        type=$(getbyte) || return 1
++        subtype=$(getbyte) || return 1
++        len=$(getword) || return 1
++        hextype=$(printf "%02x%02x" "$type" "$subtype")
++        case $hextype in
++            030b)
++                # MAC
++                printf "%02x:%02x:%02x:%02x:%02x:%02x" $(getbyte) $(getbyte) $(getbyte) $(getbyte) $(getbyte) $(getbyte)
++                read -r -N 27  tt || return 1
++                ;;
++            7fff)
++                # END
++                return 0
++                ;;
++            *)
++                read -r -N $(($len-4))  tt || return 1
++                ;;
++        esac
++    done < $data
++}
++
++get_fcoe_boot_vlan()
++{
++    data=${1:-/sys/firmware/efi/vars/FcoeBootDevice-a0ebca23-5f9c-447a-a268-22b6c158c2ac/data}
++    [ -f $data ] || return 1
++    local IFS= LC_CTYPE=C tt len type hextype
++    first=1
++
++    while :; do
++        type=$(getbyte) || return 1
++        subtype=$(getbyte) || return 1
++        len=$(getword) || return 1
++        hextype=$(printf "%02x%02x" "$type" "$subtype")
++        case $hextype in
++            0314)
++                # VLAN
++                printf "%d" $(getword)
++                ;;
++            7fff)
++                # END
++                return 0
++                ;;
++            *)
++                read -r -N $(($len-4))  tt || return 1
++                ;;
++        esac
++    done < $data
++}
diff --git a/SOURCES/0020-rootfs-block-add-support-for-the-rootfallback-kernel.patch b/SOURCES/0020-rootfs-block-add-support-for-the-rootfallback-kernel.patch
new file mode 100644
index 0000000..acf681e
--- /dev/null
+++ b/SOURCES/0020-rootfs-block-add-support-for-the-rootfallback-kernel.patch
@@ -0,0 +1,94 @@
+From 85c8246d7ba0adbff98478b1f3f9ba1bea0937dc Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 7 Oct 2013 15:06:22 +0200
+Subject: [PATCH] rootfs-block: add support for the rootfallback= kernel
+ cmdline option
+
+---
+ dracut.cmdline.7.asc                     |  6 +++++
+ modules.d/95rootfs-block/module-setup.sh |  3 ++-
+ modules.d/95rootfs-block/rootfallback.sh | 46 ++++++++++++++++++++++++++++++++
+ 3 files changed, 54 insertions(+), 1 deletion(-)
+ create mode 100755 modules.d/95rootfs-block/rootfallback.sh
+
+diff --git a/dracut.cmdline.7.asc b/dracut.cmdline.7.asc
+index 09c47e8..4b2ab03 100644
+--- a/dracut.cmdline.7.asc
++++ b/dracut.cmdline.7.asc
+@@ -69,6 +69,12 @@ rootfstype=ext3
+     force mounting _/_ and _/usr_ (if it is a separate device) read-write.
+     See also ro option.
+ 
++**rootfallback=**_<path to blockdevice>_::
++    specify the block device to use as the root filesystem, if the normal root cannot be found.
++    This can only be a simple block device with a simple file system, for which the filesystem
++    driver is either compiled in, or added manually to the initramfs.
++    This parameter can be specified multiple times.
++
+ **rd.auto** **rd.auto=1**::
+     enable autoassembly of special devices like cryptoLUKS, dmraid, mdraid or lvm.
+     Default is off as of dracut version >= 024.
+diff --git a/modules.d/95rootfs-block/module-setup.sh b/modules.d/95rootfs-block/module-setup.sh
+index f066a79..7e714eb 100755
+--- a/modules.d/95rootfs-block/module-setup.sh
++++ b/modules.d/95rootfs-block/module-setup.sh
+@@ -44,5 +44,6 @@ install() {
+         inst_hook pre-udev 30 "$moddir/block-genrules.sh"
+         inst_hook mount 99 "$moddir/mount-root.sh"
+     fi
+-}
+ 
++    inst_hook initqueue/timeout 99 "$moddir/rootfallback.sh"
++}
+diff --git a/modules.d/95rootfs-block/rootfallback.sh b/modules.d/95rootfs-block/rootfallback.sh
+new file mode 100755
+index 0000000..246ce9a
+--- /dev/null
++++ b/modules.d/95rootfs-block/rootfallback.sh
+@@ -0,0 +1,46 @@
++#!/bin/sh
++# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
++# ex: ts=8 sw=4 sts=4 et filetype=sh
++
++type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
++
++for root in $(getargs rootfallback=); do
++    case "$root" in
++        block:LABEL=*|LABEL=*)
++            root="${root#block:}"
++            root="$(echo $root | sed 's,/,\\x2f,g')"
++            root="/dev/disk/by-label/${root#LABEL=}"
++            ;;
++        block:UUID=*|UUID=*)
++            root="${root#block:}"
++            root="${root#UUID=}"
++            root="$(echo $root | tr "[:upper:]" "[:lower:]")"
++            root="/dev/disk/by-uuid/${root#UUID=}"
++            ;;
++        block:PARTUUID=*|PARTUUID=*)
++            root="${root#block:}"
++            root="${root#PARTUUID=}"
++            root="$(echo $root | tr "[:upper:]" "[:lower:]")"
++            root="/dev/disk/by-partuuid/${root}"
++            ;;
++        block:PARTLABEL=*|PARTLABEL=*)
++            root="${root#block:}"
++            root="/dev/disk/by-partlabel/${root#PARTLABEL=}"
++            ;;
++    esac
++
++    if ! [ -b "$root" ]; then
++        warn "Could not find rootfallback $root"
++        continue
++    fi
++
++    if mount "$root" /sysroot; then
++        info "Mounted rootfallback $root"
++        exit 0
++    else
++        warn "Failed to mount rootfallback $root"
++        exit 1
++    fi
++done
++
++[ -e "$job" ] && rm -f "$job"
diff --git a/SOURCES/0021-btrfs-use-inst_hook-to-install-the-timeout-hook.patch b/SOURCES/0021-btrfs-use-inst_hook-to-install-the-timeout-hook.patch
new file mode 100644
index 0000000..213b395
--- /dev/null
+++ b/SOURCES/0021-btrfs-use-inst_hook-to-install-the-timeout-hook.patch
@@ -0,0 +1,23 @@
+From 9d9f81d6a5f452a18dd1c253cd8805d39be8af21 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 7 Oct 2013 15:06:50 +0200
+Subject: [PATCH] btrfs: use inst_hook to install the timeout hook
+
+---
+ modules.d/90btrfs/module-setup.sh | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/modules.d/90btrfs/module-setup.sh b/modules.d/90btrfs/module-setup.sh
+index 638a050..a280594 100755
+--- a/modules.d/90btrfs/module-setup.sh
++++ b/modules.d/90btrfs/module-setup.sh
+@@ -39,8 +39,7 @@ install() {
+     fi
+ 
+     if ! dracut_module_included "systemd"; then
+-        inst_script "$moddir/btrfs_timeout.sh" \
+-            /usr/lib/dracut/hooks/initqueue/timeout/btrfs_timeout.sh
++        inst_hook initqueue/timeout 10 "$moddir/btrfs_timeout.sh"
+     fi
+ 
+     inst_multiple -o btrfsck btrfs-zero-log
diff --git a/SOURCES/0022-lvm-install-thin-utils-for-non-hostonly.patch b/SOURCES/0022-lvm-install-thin-utils-for-non-hostonly.patch
new file mode 100644
index 0000000..7232670
--- /dev/null
+++ b/SOURCES/0022-lvm-install-thin-utils-for-non-hostonly.patch
@@ -0,0 +1,38 @@
+From 06b83706baaaf1586d83b1534dd52fccfa012ce2 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Tue, 8 Oct 2013 10:30:00 +0200
+Subject: [PATCH] lvm: install thin utils for non-hostonly
+
+---
+ modules.d/90lvm/module-setup.sh | 18 +++++++++++-------
+ 1 file changed, 11 insertions(+), 7 deletions(-)
+
+diff --git a/modules.d/90lvm/module-setup.sh b/modules.d/90lvm/module-setup.sh
+index f98ffff..514addc 100755
+--- a/modules.d/90lvm/module-setup.sh
++++ b/modules.d/90lvm/module-setup.sh
+@@ -52,13 +52,17 @@ install() {
+ 
+     inst lvm
+ 
+-    get_host_lvs | while read line; do
+-        printf "%s" " rd.lvm.lv=$line"
+-        if ! [[ $_needthin ]]; then
+-            [[ "$(lvs --noheadings -o segtype ${line%%/*} 2>/dev/null)" == *thin* ]] && _needthin=1
+-        fi
+-    done >> "${initdir}/etc/cmdline.d/90lvm.conf"
+-    echo >> "${initdir}/etc/cmdline.d/90lvm.conf"
++    if [[ $hostonly ]]; then
++        get_host_lvs | while read line; do
++            printf "%s" " rd.lvm.lv=$line"
++            if ! [[ $_needthin ]]; then
++                [[ "$(lvs --noheadings -o segtype ${line%%/*} 2>/dev/null)" == *thin* ]] && _needthin=1
++            fi
++        done >> "${initdir}/etc/cmdline.d/90lvm.conf"
++        echo >> "${initdir}/etc/cmdline.d/90lvm.conf"
++    else
++        _needthin=1
++    fi
+ 
+     inst_rules "$moddir/64-lvm.rules"
+ 
diff --git a/SOURCES/0023-dracut.sh-do-not-bail-out-if-kernel-modules-dir-is-m.patch b/SOURCES/0023-dracut.sh-do-not-bail-out-if-kernel-modules-dir-is-m.patch
new file mode 100644
index 0000000..c177b38
--- /dev/null
+++ b/SOURCES/0023-dracut.sh-do-not-bail-out-if-kernel-modules-dir-is-m.patch
@@ -0,0 +1,38 @@
+From 28cf10ecf3881d1c364f85d2a1ac1673c70df45c Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Tue, 8 Oct 2013 15:03:40 +0200
+Subject: [PATCH] dracut.sh: do not bail out, if kernel modules dir is missing
+
+and only print a warning message
+---
+ dracut.sh | 11 ++++++-----
+ 1 file changed, 6 insertions(+), 5 deletions(-)
+
+diff --git a/dracut.sh b/dracut.sh
+index e135dfc..d9533dd 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -496,17 +496,18 @@ if [[ $regenerate_all == "yes" ]]; then
+         ((ret+=$?))
+     done
+     exit $ret
+-elif [[ $kernel ]]; then
+-    if ! [[ -d /lib/modules/$kernel ]] && [[ $no_kernel != yes ]]; then
+-        printf -- "Kernel version $kernel has no modules in /lib/modules/$kernel\n" >&2
+-        exit 1
+-    fi
+ fi
+ 
+ if ! [[ $kernel ]]; then
+     kernel=$(uname -r)
+ fi
+ 
++if [[ $kernel ]]; then
++    if ! [[ -d /lib/modules/$kernel ]] && [[ $no_kernel != yes ]]; then
++        printf -- "Kernel version $kernel has no module directory /lib/modules/$kernel\n" >&2
++    fi
++fi
++
+ if ! [[ $outfile ]]; then
+     [[ -f /etc/machine-id ]] && read MACHINE_ID < /etc/machine-id
+ 
diff --git a/SOURCES/0024-dmsquash-live-add-dev-mapper-live-base.patch b/SOURCES/0024-dmsquash-live-add-dev-mapper-live-base.patch
new file mode 100644
index 0000000..3cb4aeb
--- /dev/null
+++ b/SOURCES/0024-dmsquash-live-add-dev-mapper-live-base.patch
@@ -0,0 +1,47 @@
+From bebff290a27c2f5ccba5fc52323b31d8f1e4ef02 Mon Sep 17 00:00:00 2001
+From: "Brian C. Lane" <bcl@redhat.com>
+Date: Tue, 8 Oct 2013 15:13:44 +0200
+Subject: [PATCH] dmsquash-live: add /dev/mapper/live-base
+
+This is similar to the reason for adding the
+/run/initramfs/live-baseloop symlink -- access to the original live
+image without overlays.
+
+livemedia-creator does not create a osmin.img, so there is no mountable
+device for it to use when rsyncing the live image to the target. It
+needs a device that points to the original live image without overlays.
+
+Note that lmc won't be creating osmin.img, since really isn't needed any
+longer. Its purpose was to provide a minimal image that could be dd'd to
+the target. Now that we use rsync this is no longer necessary.
+
+The included patch adds a /dev/mapper/live-base device that Anaconda can
+use whether or not there is an osmin present.
+---
+ modules.d/90dmsquash-live/dmsquash-live-root.sh | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/modules.d/90dmsquash-live/dmsquash-live-root.sh b/modules.d/90dmsquash-live/dmsquash-live-root.sh
+index 8951f80..5705e8d 100755
+--- a/modules.d/90dmsquash-live/dmsquash-live-root.sh
++++ b/modules.d/90dmsquash-live/dmsquash-live-root.sh
+@@ -144,6 +144,9 @@ do_live_overlay() {
+         over=$OVERLAY_LOOPDEV
+     fi
+     echo 0 $sz snapshot $base $over p 8 | dmsetup create live-rw
++
++    # Create a device that always points to a ro base image
++    echo 0 $sz linear $base 0 | dmsetup create --readonly live-base
+ }
+ 
+ # live cd helper function
+@@ -225,9 +228,6 @@ if [ -n "$ROOTFLAGS" ]; then
+     ROOTFLAGS="-o $ROOTFLAGS"
+ fi
+ 
+-if [ -b "$BASE_LOOPDEV" ]; then
+-    ln -s $BASE_LOOPDEV /run/initramfs/live-baseloop
+-fi
+ ln -s /dev/mapper/live-rw /dev/root
+ printf 'mount %s /dev/mapper/live-rw %s\n' "$ROOTFLAGS" "$NEWROOT" > $hookdir/mount/01-$$-live.sh
+ 
diff --git a/SOURCES/0025-Doc-cleanup-extend-and-split-and-reuse.patch b/SOURCES/0025-Doc-cleanup-extend-and-split-and-reuse.patch
new file mode 100644
index 0000000..83e3852
--- /dev/null
+++ b/SOURCES/0025-Doc-cleanup-extend-and-split-and-reuse.patch
@@ -0,0 +1,3212 @@
+From 9a2da3c39f90134d33d9397c9dd4687a6113a65c Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Tue, 8 Oct 2013 14:59:47 +0200
+Subject: [PATCH] Doc: cleanup, extend and split and reuse
+
+---
+ Makefile             |   8 +-
+ dracut.8.asc         |  61 +---
+ dracut.asc           | 888 +--------------------------------------------------
+ dracut.cmdline.7.asc | 414 ++++++++++++++----------
+ dracut.css           | 434 +------------------------
+ dracut.modules.7.asc | 293 +++++++++++++++++
+ dracut.spec          |   1 +
+ dracut.usage.asc     | 526 ++++++++++++++++++++++++++++++
+ 8 files changed, 1084 insertions(+), 1541 deletions(-)
+ create mode 100644 dracut.modules.7.asc
+ create mode 100644 dracut.usage.asc
+
+diff --git a/Makefile b/Makefile
+index 124a41b..e7da948 100644
+--- a/Makefile
++++ b/Makefile
+@@ -21,7 +21,8 @@ man1pages = lsinitrd.1
+ man5pages = dracut.conf.5
+ 
+ man7pages = dracut.cmdline.7 \
+-            dracut.bootup.7
++            dracut.bootup.7 \
++            dracut.modules.7
+ 
+ man8pages = dracut.8 \
+             dracut-catimages.8 \
+@@ -37,7 +38,6 @@ man8pages = dracut.8 \
+ 
+ manpages = $(man1pages) $(man5pages) $(man7pages) $(man8pages)
+ 
+-
+ .PHONY: install clean archive rpm testimage test all check AUTHORS doc dracut-version.sh
+ 
+ all: dracut-version.sh dracut-install
+@@ -76,7 +76,9 @@ endif
+ %.xml: %.asc
+ 	asciidoc -d manpage -b docbook -o $@ $<
+ 
+-dracut.html: dracut.asc $(manpages) dracut.css
++dracut.8: dracut.usage.asc dracut.8.asc
++
++dracut.html: dracut.asc $(manpages) dracut.css dracut.usage.asc
+ 	asciidoc -a numbered -d book -b docbook -o dracut.xml dracut.asc
+ 	xsltproc -o dracut.html --xinclude -nonet \
+ 		--stringparam custom.css.source dracut.css \
+diff --git a/dracut.8.asc b/dracut.8.asc
+index 76fc75c..584514c 100644
+--- a/dracut.8.asc
++++ b/dracut.8.asc
+@@ -10,7 +10,7 @@ dracut - low-level tool for generating an initramfs image
+ 
+ SYNOPSIS
+ --------
+-*dracut* ['OPTION...'] [<image> [_<kernel version>_]]
++*dracut* [__OPTION...__] [__<image>__ [__<kernel version>__]]
+ 
+ DESCRIPTION
+ -----------
+@@ -37,53 +37,10 @@ Additional debugging info can be produced by adding **rd.debug** to the kernel c
+ _/run/initramfs/rdsosreport.txt_ contains all logs and the output of some tools.
+ It should be attached to any report about dracut problems.
+ 
+-EXAMPLE
+--------
+-
+-To create a initramfs image, the most simple command is:
+-----
+-# dracut
+-----
+-
+-This will generate a general purpose initramfs image, with all possible
+-functionality resulting of the combination of the installed dracut modules and
+-system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
+-contains the kernel modules of the currently active kernel with version
+-_++<kernel version>++_.
+-
+-If the initramfs image already exists, dracut will display an error message, and
+-to overwrite the existing image, you have to use the --force option.
+-----
+-# dracut --force
+-----
+-
+-If you want to specify another filename for the resulting image you would issue
+-a command like:
+-----
+-# dracut foobar.img
+-----
+-
+-To generate an image for a specific kernel version, the command would be:
+-----
+-# dracut foobar.img 2.6.40-1.rc5.f20
+-----
+-
+-A shortcut to generate the image at the default location for a specific kernel
+-version is:
+-----
+-# dracut --kver 2.6.40-1.rc5.f20
+-----
+-
+-If you want to create lighter, smaller initramfs images, you may want to specify
+-the --hostonly or -H option. Using this option, the resulting image will
+-contain only those dracut modules, kernel modules and filesystems, which are
+-needed to boot this specific machine. This has the drawback, that you can't put
+-the disk on another controller or machine, and that you can't switch to another
+-root filesystem, without recreating the initramfs image. The usage of the
+---hostonly option is only for experts and you will have to keep the broken
+-pieces. At least keep a copy of a general purpose image (and corresponding
+-kernel) as a fallback to rescue your system.
++USAGE
++-----
+ 
++include::dracut.usage.asc[]
+ 
+ OPTIONS
+ -------
+@@ -337,7 +294,7 @@ provide a valid _/etc/fstab_.
+ **-N, --no-hostonly**::
+     Disable Host-Only mode
+ 
+-**--persistent-policy** _<policy>_::
++**--persistent-policy** _<policy>_::
+     Use _<policy>_ to address disks and partitions.
+     _<policy>_ can be any directory name found in /dev/disk.
+     E.g. "by-uuid", "by-label"
+@@ -345,7 +302,7 @@ provide a valid _/etc/fstab_.
+ **--fstab**::
+     Use _/etc/fstab_ instead of _/proc/self/mountinfo_.
+ 
+-**--add-fstab** _<filename>_ ::
++**--add-fstab** _<filename>_::
+     Add entries of _<filename>_ to the initramfs /etc/fstab.
+ 
+ **--mount** "_<device>_ _<mountpoint>_ _<filesystem type>_ _<filesystem options>_"::
+@@ -358,13 +315,13 @@ provide a valid _/etc/fstab_.
+     LVM or an encrypted partition.
+     [NB --device can be used for compatibility with earlier releases]
+ 
+-**-i, --include** _<SOURCE>_ _<TARGET>_::
++**-i, --include** _<SOURCE>_ _<TARGET>_::
+     include the files in the SOURCE directory into the
+     TARGET directory in the final initramfs. If SOURCE is a file, it will be
+     installed to TARGET in the final initramfs. This parameter can be specified
+     multiple times.
+ 
+-**-I, --install** _<file list>_::
++**-I, --install** _<file list>_::
+     install the space separated list of files into the initramfs.
+ +
+ [NOTE]
+@@ -481,7 +438,7 @@ _/etc/conf.d/_::
+ _/etc/cmdline_::
+     Can contain additional command line options. Deprecated, better use /etc/cmdline.d/*.conf.
+ 
+-_/etc/cmdline.d/*.conf::
++_/etc/cmdline.d/*.conf_::
+     Can contain additional command line options.
+ 
+ AVAILABILITY
+diff --git a/dracut.asc b/dracut.asc
+index c011658..031b201 100644
+--- a/dracut.asc
++++ b/dracut.asc
+@@ -1,7 +1,7 @@
+ dracut
+ ======
+ Harald Hoyer <harald@redhat.com>
+-v2.0, March 2011
++v3.0, October 2013
+ 
+ :language: bash
+ 
+@@ -145,885 +145,10 @@ This ensures, that all devices are disassembled and unmounted cleanly.
+ 
+ = User Manual
+ 
+-== Creating an initramfs Image
+-To create a initramfs image, the most simple command is:
+-----
+-# dracut
+-----
+-
+-This will generate a general purpose initramfs image, with all possible
+-functionality resulting of the combination of the installed dracut modules and
+-system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
+-contains the kernel modules of the currently active kernel with version
+-_++<kernel version>++_.
+-
+-If the initramfs image already exists, dracut will display an error message, and
+-to overwrite the existing image, you have to use the --force option.
+-----
+-# dracut --force
+-----
+-
+-If you want to specify another filename for the resulting image you would issue
+-a command like:
+-----
+-# dracut foobar.img
+-----
+-
+-To generate an image for a specific kernel version, the command would be:
+-----
+-# dracut foobar.img 2.6.40-1.rc5.f20
+-----
+-
+-A shortcut to generate the image at the default location for a specific kernel
+-version is:
+-----
+-# dracut --kver 2.6.40-1.rc5.f20
+-----
+-
+-If you want to create lighter, smaller initramfs images, you may want to specify
+-the --host-only or -H option. Using this option, the resulting image will
+-contain only those dracut modules, kernel modules and filesystems, which are
+-needed to boot this specific machine. This has the drawback, that you can't put
+-the disk on another controller or machine, and that you can't switch to another
+-root filesystem, without recreating the initramfs image. The usage of the
+---host-only option is only for experts and you will have to keep the broken
+-pieces. At least keep a copy of a general purpose image (and corresponding
+-kernel) as a fallback to rescue your system.
+-
+-=== Inspecting the Contents
+-To see the contents of the image created by dracut, you can use the lsinitrd tool.
+-----
+-# lsinitrd /boot/initramfs-$(uname -r).img | less
+-----
+-
+-To display the contents of a file in the initramfs also use the lsinitrd tool:
+-----
+-# lsinitrd /boot/initramfs-$(uname -r).img  /etc/ld.so.conf
+-include ld.so.conf.d/*.conf
+-----
+-
+-=== Adding dracut Modules
+-Some dracut modules are turned off by default and have to be activated manually.
+-You can do this by adding the dracut modules to the configuration file
+-_/etc/dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_. See <<dracutconf5>>.
+-You can also add dracut modules on the command line
+-by using the -a or --add option:
+-----
+-# dracut --add bootchart initramfs-bootchart.img
+-----
+-
+-To see a list of available dracut modules, use the --list-modules option:
+-----
+-# dracut --list-modules
+-----
+-
+-or, if you have a dracut version earlier than +008+, issue the command:
+-----
+-# for mod in /usr/lib/dracut/modules.d/*; do echo ${mod##*/??}; done
+-----
+-
+-=== Omitting dracut Modules
+-Sometimes you don't want a dracut module to be included for reasons of speed,
+-size or functionality. To do this, either specify the omit_dracutmodules
+-variable in the _dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_ configuration
+-file (see <<dracutconf5>>), or use the -o or --omit option
+-on the command line:
+-----
+-# dracut -o "multipath lvm" no-multipath-lvm.img
+-----
+-
+-=== Adding Kernel Modules
+-If you need a special kernel module in the initramfs, which is not
+-automatically picked up by dracut, you have the use the --add-drivers option
+-on the command line or  the drivers vaiable in  the _/etc/dracut.conf_
+-or _/etc/dracut.conf.d/myconf.conf_ configuration file (see <<dracutconf5>>):
+-----
+-# dracut --add-drivers mymod initramfs-with-mymod.img
+-----
+-
+-== Boot parameters
+-The generated initramfs.img file normally does not contain any system
+-configuration files (except for some special exceptions), so the configuration
+-has to be done on the kernel command line. With this flexibility, you can easily
+-boot from a changed root partition, without the need to recompile the initramfs
+-image. So, you could completly change your root partition (move it inside a md
+-raid with encryption and LVM on top), as long as you specify the correct
+-filesystem LABEL or UUID on the kernel command line for your root device, dracut
+-will find it and boot from it.
+-
+-The kernel command line usually can be configured in _/boot/grub/grub.conf_, if
+-grub is your bootloader and it also can be edited in the real boot process in
+-the grub menu.
+-
+-The kernel command line can also be provided by the dhcp server with the
+-root-path option. See <<NetworkBoot>>.
+-
+-For a full reference of all kernel command line parameters, see <<dracut8>>.
+-
+-=== Specifying the root Device
+-This is the only option dracut really needs to boot from your root partition.
+-Because your root partition can live in various environments, there are a lot of
+-formats for the root= option. The most basic one is root=_++<path to device
+-node>++_:
+-----
+-root=/dev/sda2
+-----
+-
+-Because device node names can change, dependent on the drive ordering, you are
+-encouraged to use the filesystem identifier (UUID) or filesystem label (LABEL)
+-to specify your root partition:
+-----
+-root=UUID=19e9dda3-5a38-484d-a9b0-fa6b067d0331
+-----
+-
+-or
+-
+-----
+-root=LABEL=myrootpartitionlabel
+-----
+-
+-To see all UUIDs or LABELs on your system, do:
+-----
+-# ls -l /dev/disk/by-uuid
+-----
+-
+-or
+-
+-----
+-# ls -l /dev/disk/by-label
+-----
+-
+-If your root partition is on the network see <<NetworkBoot>>.
+-
+-=== Keyboard Settings
+-If you have to input passwords for encrypted disk volumes, you might want to set
+-the keyboard layout and specify a display font.
+-
+-A typical german kernel command would contain:
+-----
+-vconsole.font=latarcyrheb-sun16 vconsole.keymap=de-latin1-nodeadkeys locale.LANG=de_DE.UTF-8
+-----
+-
+-Setting these options can override the setting stored on your system, if you use
+-a modern init system, like systemd.
+-
+-For dracut versions prior to version +008+ the line would look like:
+-----
+-LANG=de_DE.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=de-latin1-nodeadkeys
+-----
+-
+-=== Blacklisting Kernel Modules
+-Sometimes it is required to prevent the automatic kernel module loading of a
+-specific kernel module. To do this, just add rd.blacklist=_++<kernel module
+-name>++_, with _++<kernel module name>++_ not containing the _.ko_
+-suffix, to the kernel command line. For example:
+-----
+-rd.driver.blacklist=mptsas rd.driver.blacklist=nouveau
+-----
+-
+-The option can be specified multiple times on the kernel command line.
+-
+-=== Speeding up the Boot Process
+-If you want to speed up the boot process, you can specify as much information
+-for dracut on the kernel command as possible. For example, you can tell dracut,
+-that you root partition is not on a LVM volume or not on a raid partition, or
+-that it lives inside a specific crypto LUKS encrypted volume. By default, dracut
+-searches everywhere. A typical dracut kernel command line for a plain primary or
+-logical partition would contain:
+-----
+-rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0
+-----
+-
+-On systems with dracut version prior to +008+ the line would look like:
+-----
+-rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM
+-----
+-
+-This turns off every automatic assembly of LVM, MD raids, DM raids and crypto LUKS.
+-
+-Of course, you could also omit the dracut modules in the initramfs creation
+-process, but then you would lose the posibility to turn it on on demand.
+-
+-
+-[[Injecting]]
+-=== Injecting custom Files
+-To add your own files to the initramfs image, you have several possibilities.
+-
+-The --include option let you specify a source path and a target path. For example
+-----
+-# dracut --include cmdline-preset /etc/cmdline.d/mycmdline.conf initramfs-cmdline-pre.img
+-----
+-will create an initramfs image, where the file cmdline-preset will be copied
+-inside the initramfs to _/etc/cmdline.d/mycmdline.conf_. --include can only be specified once.
+-
+-
+-----
+-# mkdir rd.live.overlay
+-# mkdir rd.live.overlay/etc
+-# mkdir rd.live.overlay/etc/conf.d
+-# mkdir rd.live.overlay/etc/cmdline.d
+-# echo "ip=auto" >> rd.live.overlay/etc/cmdline.d/mycmdline.conf
+-# echo export FOO=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
+-# echo export BAR=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
+-# tree rd.live.overlay/
+-rd.live.overlay/
+-└── etc
+-    ├── cmdline.d
+-        │   └── mycmdline.conf
+-	    └── conf.d
+-	            └── testvar.conf
+-
+-# dracut --include rd.live.overlay / initramfs-rd.live.overlay.img
+-----
+-
+-This will put the contents of the rd.live.overlay directory into the root of the
+-initramfs image.
+-
+-The --install option let you specify several files, which will get installed in
+-the initramfs image at the same location, as they are present on initramfs
+-creation time.
+-
+-
+-----
+-# dracut --install 'strace fsck.ext3 ssh' initramfs-dbg.img
+-----
+-
+-This will create an initramfs with the strace, fsck.ext3 and ssh executables,
+-together with the libraries needed to start those. The --install option can be
+-specified multiple times.
+-
+-
+-[[NetworkBoot]]
+-== Network Boot
+-
+-If your root partition is on a network drive, you have to have the network
+-dracut modules installed to create a network aware initramfs image.
+-
+-On a Red Hat Enterprise Linux or Fedora system, this means, you have to install
+-the _dracut-network_ rpm package:
+-
+-
+-----
+-# yum install dracut-network
+-----
+-
+-The resulting initramfs image can be served by a boot manager residing on your
+-local hard drive or it can be served by a PXE/TFTP server.
+-
+-How to setup your PXE/TFTP server can be found in the
+-http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/[Red
+-Hat Enterprise Linux Storage Administration Guide].
+-
+-If you specify ip=auto on the kernel command line, then dracut asks a dhcp
+-server about the ip adress for the machine. The dhcp server can also serve an
+-additional root-path, which will set the root device for dracut. With this
+-mechanism, you have static configuration on your client machine and a
+-centralized boot configuration on your TFTP/DHCP server. If you can't pass a
+-kernel command line, then you can inject _/etc/cmdline.d/mycmdline.conf_, with a method described
+-in <<Injecting>>.
+-
+-
+-
+-
+-=== Reducing the Image Size
+-
+-To reduce the size of the initramfs, you should create it with by ommitting all
+-dracut modules, which you know, you don't need to boot the machine.
+-
+-You can also specify the exact dracut and kernel modules to produce a very tiny
+-initramfs image.
+-
+-For example for a NFS image, you would do:
+-
+-
+-----
+-# dracut -m "nfs network  base" initramfs-nfs-only.img
+-----
+-
+-Then you would boot from this image with your target machine and reduce the size
+-once more by creating it on the target machine with the --host-only option:
+-
+-
+-----
+-# dracut -m "nfs network base" --host-only initramfs-nfs-host-only.img
+-----
+-
+-This will reduce the size of the initramfs image significantly.
+-
+-
+-
+-=== NFS Root Device
+-
+-FIXME
+-
+-=== iSCSI Root Device
+-
+-FIXME 
+-
+-=== FCoE Root Device
+-
+-FIXME
+-
+-== Troubleshooting
+-
+-If the boot process does not succeed, you have several options to debug the
+-situation. Some of the basic operations are covered here. For more information
+-you should also visit:
+-http://fedoraproject.org/wiki/How_to_debug_Dracut_problems
+-
+-
+-[[identifying-your-problem-area]]
+-=== Identifying your problem area
+-. Remove ''rhgb'' and ''quiet'' from the kernel command line
+-. Add ''rd.shell'' to the kernel command line. This will present a shell should
+-dracut be unable to locate your root device
+-. Add ''rd.shell rd.debug log_buf_len=1M'' to the kernel command line so that
+-dracut shell commands are printed as they are executed
+-. With dracut >= 002-11, you can inspect the rd.debug output with:
+-+
+-----
+-# less /run/initramfs/init.log
+-# dmesg | less
+-----
+-. With dracut >= 022 and systemd, you can inspect the rd.debug output with:
+-----
+-# journalctl -ab
+-----
+-. With dracut >= 025 the file /run/initramfs/rdsosreport.txt is generated, which contains all the logs and the output of all significant tools, which are mentioned later.
+-
+-If you want to save that output, simply mount /boot by hand or insert an USB stick and mount that.
+-Then you can store the output for later inspection.
+-
+-[[information-to-include-in-your-report]]
+-=== Information to include in your report
+-
+-[[all-bug-reports]]
+-==== All bug reports
+-In all cases, the following should be mentioned and attached to your bug report:
+-
+-* The exact kernel command-line used. Typically from the bootloader
+-configuration file (e.g. _/etc/grub.conf_) or from _/proc/cmdline_.
+-* A copy of your disk partition information from _/etc/fstab_, which might be
+-obtained booting an old working initramfs or a rescue medium.
+-* A device listing from device-mapper. This can be obtained by running the
+-command
+-+
+-----
+-# dmsetup ls --tree
+-----
+-+
+-* A list of block device attributes. This can be obtained by running the commands: 
+-+
+-----
+-# blkid -p
+-# blkid -p -o udev
+-----
+-* Turn on dracut debugging (see _the 'debugging dracut' section_), and attach
+-all relevant information from the boot log. This can be obtained by running the
+-command 
+-+
+-----
+-# dmesg|grep dracut
+-----
+-+
+-* If you use a dracut configuration file, please include _/etc/dracut.conf_ and
+-all files in _/etc/dracut.conf.d/*.conf_
+-
+-[[logical-volume-management-related-problems]]
+-==== Logical Volume Management related problems
+-As well as the information from <<all-bug-reports>> include the following
+-information:
+-
+-* Include physical volume information by running the command:
+-+
+-----
+-# lvm pvdisplay
+-----
+-+
+-* Include volume group information by running the command:
+-+
+-----
+-# lvm vgdisplay
+-----
+-+
+-* Include logical volume information by running the command:
+-+
+-----
+-# lvm lvdisplay
+-----
+-
+-[[software-raid-related-problems]]
+-==== Software RAID related problems
+-As well as the information from <<all-bug-reports>>, include the following
+-information:
+-
+-* If using software RAID disk partitions, please include the output of
+-+
+-----
+-# cat /proc/mdstat
+-----
+-
+-[[network-root-device-related-problems]]
+-==== Network root device related problems
+-This section details information to include when experiencing problems on a
+-system whose root device is located on a network attached volume (e.g. iSCSI,
+-NFS or NBD). As well as the information from <<all-bug-reports>>, include the
+-following information:
+-
+-
+-* Please include the output of
+-+
+-----
+-# /sbin/ifup <interfacename>
+-# ip addr show
+-----
+-
+-[[debugging-dracut]]
+-=== Debugging dracut
+-
+-
+-[[configure-a-serial-console]]
+-==== Configure a serial console
+-
+-Successfully debugging dracut will require some form of console
+-logging during the system boot.  This section documents configuring a
+-serial console connection to record boot messages.
+-
+-. First, enable serial console output for both the kernel and the bootloader.
+-. Open the file _/etc/grub.conf_ for editing. Below the line ''timeout=5'', add
+-the following:
+-+
+-----
+-serial --unit=0 --speed=9600
+-terminal --timeout=5 serial console
+-----
+-+
+-. Also in _/etc/grub.conf_, add the following boot arguemnts to the ''kernel''
+-line:
+-+
+-----
+-console=tty0 console=ttyS0,9600
+-----
+-+
+-. When finished, the _/etc/grub.conf_ file should look similar to the example
+-below.
+-+
+-----
+-default=0
+-timeout=5
+-serial --unit=0 --speed=9600
+-terminal --timeout=5 serial console
+-title Fedora (2.6.29.5-191.fc11.x86_64)
+-  root (hd0,0)
+-  kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 console=ttyS0,9600
+-  initrd /dracut-2.6.29.5-191.fc11.x86_64.img
+-----
+-+
+-. More detailed information on how to configure the kernel for console output
+-can be found at
+-http://www.faqs.org/docs/Linux-HOWTO/Remote-Serial-Console-HOWTO.html#CONFIGURE-KERNEL.
+-. Redirecting non-interactive output
+-+
+---
+-NOTE: You can redirect all non-interactive output to _/dev/kmsg_ and the kernel
+-will put it out on the console when it reaches the kernel buffer by doing
+-
+-----
+-# exec >/dev/kmsg 2>&1 </dev/console
+-----
+---
+-
+-[[using-the-dracut-shell]]
+-==== Using the dracut shell
+-
+-dracut offers a shell for interactive debugging in the event dracut fails to
+-locate your root filesystem. To enable the shell:
+-
+-. Add the boot parameter ''rd.shell'' to your bootloader configuration file
+-(e.g. _/etc/grub.conf_)
+-. Remove the boot arguments ''rhgb'' and ''quiet''
+-+
+-A sample _/etc/grub.conf_ bootloader configuration file is listed below.
+-+
+-----
+-default=0
+-timeout=5
+-serial --unit=0 --speed=9600
+-terminal --timeout=5 serial console
+-title Fedora (2.6.29.5-191.fc11.x86_64)
+-  root (hd0,0)
+-  kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 rd.shell
+-  initrd /dracut-2.6.29.5-191.fc11.x86_64.img
+-----
+-+
+-. If system boot fails, you will be dropped into a shell as seen in the example below.
+-+
+-----
+-No root device found
+-Dropping to debug shell.
+-
+-#
+-----
+-+
+-. Use this shell prompt to gather the information requested above (see <<all-bug-reports>>).
+-
+-[[accessing-the-root-volume-from-the-dracut-shell]]
+-==== Accessing the root volume from the dracut shell
+-From the dracut debug shell, you can manually perform the task of locating and
+-preparing your root volume for boot. The required steps will depend on how your
+-root volume is configured. Common scenarios include:
+-
+-* A block device (e.g. _/dev/sda7_)
+-* A LVM logical volume (e.g. _/dev/VolGroup00/LogVol00_)
+-* An encrypted device (e.g. _/dev/mapper/luks-4d5972ea-901c-4584-bd75-1da802417d83_)
+-* A network attached device (e.g. netroot=iscsi:@192.168.0.4::3260::iqn.2009-02.org.fedoraproject:for.all)
+-
+-The exact method for locating and preparing will vary. However, to continue with
+-a successful boot, the objective is to locate your root volume and create a
+-symlink _/dev/root_ which points to the file system. For example, the following
+-example demonstrates accessing and booting a root volume that is an encrypted
+-LVM Logical volume.
+-
+-. Inspect your partitions using parted
+-+
+-----
+-# parted /dev/sda -s p
+-Model: ATA HTS541060G9AT00 (scsi)
+-Disk /dev/sda: 60.0GB
+-Sector size (logical/physical): 512B/512B
+-Partition Table: msdos
+-Number  Start   End     Size    Type      File system  Flags
+-1      32.3kB  10.8GB  107MB   primary   ext4         boot
+-2      10.8GB  55.6GB  44.7GB  logical                lvm
+-----
+-+
+-. You recall that your root volume was a LVM logical volume. Scan and activate
+-any logical volumes.
+-+
+-----
+-# lvm vgscan
+-# lvm vgchange -ay
+-----
+-+
+-. You should see any logical volumes now using the command blkid:
+-+
+-----
+-# blkid
+-/dev/sda1: UUID="3de247f3-5de4-4a44-afc5-1fe179750cf7" TYPE="ext4"
+-/dev/sda2: UUID="Ek4dQw-cOtq-5MJu-OGRF-xz5k-O2l8-wdDj0I" TYPE="LVM2_member"
+-/dev/mapper/linux-root: UUID="def0269e-424b-4752-acf3-1077bf96ad2c" TYPE="crypto_LUKS"
+-/dev/mapper/linux-home: UUID="c69127c1-f153-4ea2-b58e-4cbfa9257c5e" TYPE="ext3"
+-/dev/mapper/linux-swap: UUID="47b4d329-975c-4c08-b218-f9c9bf3635f1" TYPE="swap"
+-----
+-+
+-. From the output above, you recall that your root volume exists on an encrypted
+-block device. Following the guidance disk encryption guidance from the
+-Installation Guide, you unlock your encrypted root volume.
+-+
+-----
+-# UUID=$(cryptsetup luksUUID /dev/mapper/linux-root)
+-# cryptsetup luksOpen /dev/mapper/linux-root luks-$UUID
+-Enter passphrase for /dev/mapper/linux-root:
+-Key slot 0 unlocked.
+-----
+-+
+-. Next, make a symbolic link to the unlocked root volume
+-+
+-----
+-# ln -s /dev/mapper/luks-$UUID /dev/root
+-----
+-+
+-. With the root volume available, you may continue booting the system by exiting
+-the dracut shell
+-+
+-----
+-# exit
+-----
+-
+-[[additional-dracut-boot-parameters]]
+-==== Additional dracut boot parameters
+-For more debugging options, see <<dracutkerneldebug>> in <<dracutcmdline7>>.
+-
+-
+-[[debugging-dracut-on-shutdown]]
+-==== Debugging dracut on shutdown
+-
+-To debug the shutdown sequence on systemd systems, you can _rd.break_
+-on _pre-shutdown_ or _shutdown_.
+-
+-To do this from an already booted system:
+-----
+-# mkdir -p /run/initramfs/etc/cmdline.d
+-# echo "rd.break=pre-shutdown" > /run/initramfs/etc/cmdline.d/debug.conf
+-# touch /run/initramfs/.need_shutdown
+-----
+-
+-This will give you a dracut shell after the system pivot'ed back in the initramfs.
+-
+-
+-= Developer Manual
+-
+-== dracut Components
+-
+-dracut uses a modular system to build and extend the initramfs image. All
+-modules are located in _/usr/lib/dracut/modules.d_ or in _<git-src>/modules.d_.
+-The most basic dracut module is _99base_. In _99base_ the initial shell script
+-init is defined, which gets run by the kernel after initramfs loading. Although
+-you can replace init with your own version of _99base_, this is not encouraged.
+-Instead you should use, if possible, the hooks of dracut. All hooks, and the
+-point of time in which they are executed, are described in <<stages>>.
+-
+-The main script, which creates the initramfs is dracut itsself. It parses all
+-arguments and sets up the directory, in which everything is installed. It then
+-executes all check, install, installkernel scripts found in the modules, which
+-are to be processed. After everything is installed, the install directory is
+-archived and compressed to the final initramfs image. All helper functions used
+-by check, install and installkernel are found in in the file _dracut-functions_.
+-These shell functions are available to all module installer (install,
+-installkernel) scripts, without the need to source _dracut-functions_.
+-
+-A module can check the preconditions for install and installkernel with the
+-check script. Also dependencies can be expressed with check. If a module passed
+-check, install and installkernel will be called to install all of the necessary
+-files for the module. To split between kernel and non-kernel parts of the
+-installation, all kernel module related parts have to be in installkernel. All
+-other files found in a module directory are module specific and mostly are hook
+-scripts and udev rules.
+-
+-
+-[[stages]]
+-== Boot Process Stages
+-
+-dracut modules can insert custom script at various points, to control the boot
+-process.
+-These hooks are plain directories containing shell scripts ending with ".sh",
+-which are sourced by init.
+-Common used functions are in _dracut-lib.sh_, which can be sourced by any script.
+-
+-=== Hook: cmdline
+-
+-The _cmdline_ hook is a place to insert scripts to parse the kernel command line
+-and prepare the later actions, like setting up udev rules and configuration
+-files.
+-
+-In this hook the most important environment variable is defined: root. The
+-second one is rootok, which indicates, that a module claimed to be able to parse
+-the root defined. So for example, **root=**__iscsi:....__ will be claimed by the
+-iscsi dracut module, which then sets rootok.
+-
+-=== Hook: pre-udev
+-
+-This hook is executed right after the cmdline hook and a check if root and
+-rootok were set. Here modules can take action with the final root, and before
+-udev has been run.
+-
+-=== Start Udev
+-
+-Now udev is started and the logging for udev is setup.
+-
+-=== Hook: pre-trigger
+-
+-In this hook, you can set udev environment variables with **udevadm control
+---property=KEY=_value_** or control the further execution of udev with
+-udevadm.
+-
+-=== Trigger Udev
+-
+-udev is triggered by calling udevadm trigger, which sends add events for all
+-devices and subsystems.
+-
+-=== Main Loop
+-
+-In the main loop of dracut loops until udev has settled and
+-all scripts in _initqueue/finished_ returned true.
+-In this loop there are three hooks, where scripts can be inserted
+-by calling /sbin/initqueue.
+-
+-==== Initqueue
+-
+-This hook gets executed every time a script is inserted here, regardless of the
+-udev state.
+-
+-==== Initqueue settled
+-
+-This hooks (initqueue/settled) gets executed every time udev has settled.
+-
+-
+-==== Initqueue timeout
+-
+-This hooks (initqueue/timeout) gets executed, when the main loop counter becomes half of the
+-rd.retry counter.
+-
+-==== Initqueue finished
+-
+-This hook (initqueue/finished) is called after udev has settled and
+-if all scripts herein return 0 the main loop will be ended.
+-Abritary scripts can be added here, to loop in the
+-initqueue until something happens, which a dracut module wants to wait for.
+-
+-=== Hook: pre-mount
+-
+-Before the root device is mounted all scripts in the hook pre-mount are
+-executed. In some cases (e.g. NFS) the real root device is already mounted,
+-though.
+-
+-=== Hook: mount
+-
+-This hook is mainly to mount the real root device.
+-
+-=== Hook: pre-pivot
+-
+-This hook is called before cleanup hook, This is a good place for
+-actions other than cleanups which need to be called before pivot.
+-
+-=== Hook: cleanup
+-
+-This hook is the last hook and is called before init finally switches root to
+-the real root device. This is a good place to clean up and kill processes not
+-needed anymore.
+-
+-
+-=== Cleanup and switch_root
+-
+-Init (or systemd) kills all udev processes, cleans up the environment,
+-sets up the arguments for the real init process and finally calls switch_root.
+-switch_root removes the whole filesystem hierarchy of the initramfs,
+-chroot()s to the real root device and calls /sbin/init with the specified arguments.
+-
+-To ensure all files in the initramfs hierarchy can be removed, all processes
+-still running from the initramfs should not have any open file descriptors left.
+-
+-== Network Infrastructure
+-
+-FIXME
+-
+-== Writing a Module
+-
+-A simple example module is _96insmodpost_, which modprobes a kernel module after
+-udev has settled and the basic device drivers have been loaded.
+-
+-All module installation information is in the file module-setup.sh.
+-
+-First we create a check() function, which just exits with 0 indicating that this
+-module should be included by default.
+-
+-check():
+-----
+-return 0
+-----
+-
+-The we create the install() function, which installs a cmdline hook with
+-priority number 20 called _parse-insmodpost.sh_. It also installs the
+-_insmodpost.sh_ script in _/sbin_.
+-
+-install():
+-----
+-inst_hook cmdline 20 "$moddir/parse-insmodpost.sh"
+-inst_simple "$moddir/insmodpost.sh" /sbin/insmodpost.sh
+-----
+-
+-The _pase-instmodpost.sh_ parses the kernel command line for a argument
+-rd.driver.post, blacklists the module from being autoloaded and installs the
+-hook _insmodpost.sh_ in the _initqueue/settled_.
+-
+-_parse-insmodpost.sh_:
+-----
+-for p in $(getargs rd.driver.post=); do
+-    echo "blacklist $p" >> /etc/modprobe.d/initramfsblacklist.conf
+-    _do_insmodpost=1
+-done
+-
+-[ -n "$_do_insmodpost" ] && /sbin/initqueue --settled --unique --onetime /sbin/insmodpost.sh
+-unset _do_insmodpost
+-
+-----
+-
+-_insmodpost.sh_, which is called in the _initqueue/settled_ hook will just
+-modprobe the kernel modules specified in all rd.driver.post kernel command line
+-parameters. It runs after udev has settled and is only called once (--onetime).
+-
+-_insmodpost.sh_:
+-----
+-. /lib/dracut-lib.sh
+-
+-for p in $(getargs rd.driver.post=); do
+-    modprobe $p
+-done
+-
+-----
+-
+-
+-
+-=== check()
+-
+-_check()_ is called by dracut to evaluate the inclusion of a dracut module in
+-the initramfs.
+-
+-$hostonly:: If the $hostonly variable is set, then the module check() function
+-should be in "hostonly" mode, which means, that the check() should only return
+-0, if the module is really needed to boot this specific host.
+-
+-check() should return with:
+-
+-0:: Include the dracut module in the initramfs.
+-
+-1:: Do not include the dracut module. The requirements are not fullfilled
+-(missing tools, etc.)
+-
+-255:: Only include the dracut module, if another module requires it or if
+-explicitly specified in the config file or on the argument list.
+-
+-
+-
+-=== depends()
+-
+-The function depends() should echo all other dracut module names the module
+-depends on.
+-
+-
+-
+-=== install()
+-
+-inst_multiple
+-
+-inst
+-
+-inst_hook
+-
+-inst_rules
+-
+-
+-
+-
+-
+-=== installkernel()
+-
+-instmods
+-
+-
+-
+-=== Creation Functions
+-
+-FIXME
+-
+-
+-=== Initramfs Functions
+-
+-FIXME
+-
+-
+-=== Network Modules
+-
+-FIXME
+-
+ :leveloffset: 1
+-[[dracutbootup7]]
+-include::dracut.bootup.7.asc[]
+-
+-:leveloffset: 1
+-[[dracut8]]
+ include::dracut.8.asc[]
+ 
++:leveloffset: 1
+ [[dracutconf5]]
+ include::dracut.conf.5.asc[]
+ 
+@@ -1036,6 +161,15 @@ include::lsinitrd.1.asc[]
+ [[mkinitrd8]]
+ include::mkinitrd.8.asc[]
+ 
++= Developer Manual
++
++:leveloffset: 1
++[[dracutmodules7]]
++include::dracut.modules.7.asc[]
++
++[[dracutbootup7]]
++include::dracut.bootup.7.asc[]
++
+ :leveloffset: 0
+ [appendix]
+ License
+diff --git a/dracut.cmdline.7.asc b/dracut.cmdline.7.asc
+index 4b2ab03..19bfb93 100644
+--- a/dracut.cmdline.7.asc
++++ b/dracut.cmdline.7.asc
+@@ -31,16 +31,16 @@ line is the value, which is honored.
+ 
+ Standard
+ ~~~~~~~~
+-**init=**_<path to real init>_::
++**init=**__<path to real init>__::
+     specify the path to the init programm to be started after the initramfs has
+     finished
+ 
+-**root=**_<path to blockdevice>_::
++**root=**__<path to blockdevice>__::
+     specify the block device to use as the root filesystem.
+ +
+-E.g.:
+-+
+-----
++[listing]
++.Example
++--
+ root=/dev/sda1
+ root=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
+ root=/dev/disk/by-label/Root
+@@ -48,15 +48,17 @@ root=LABEL=Root
+ root=/dev/disk/by-uuid/3f5ad593-4546-4a94-a374-bcfb68aa11f7
+ root=UUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
+ root=PARTUUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
+-----
++--
+ 
+-**rootfstype=**_<filesystem type>_:: "auto" if not specified, e.g.:
++**rootfstype=**__<filesystem type>__:: "auto" if not specified.
+ +
+-----
++[listing]
++.Example
++--
+ rootfstype=ext3
+-----
++--
+ 
+-**rootflags=**_<mount options>_::
++**rootflags=**__<mount options>__::
+     specify additional mount options for the root filesystem. If not set,
+     _/etc/fstab_ of the real root will be parsed for special mount options and
+     mounted accordingly.
+@@ -69,7 +71,7 @@ rootfstype=ext3
+     force mounting _/_ and _/usr_ (if it is a separate device) read-write.
+     See also ro option.
+ 
+-**rootfallback=**_<path to blockdevice>_::
++**rootfallback=**__<path to blockdevice>__::
+     specify the block device to use as the root filesystem, if the normal root cannot be found.
+     This can only be a simple block device with a simple file system, for which the filesystem
+     driver is either compiled in, or added manually to the initramfs.
+@@ -83,16 +85,16 @@ rootfstype=ext3
+     do not honor special mount options for the root filesystem found in
+     _/etc/fstab_ of the real root.
+ 
+-**resume=**_<path to resume partition>_::
++**resume=**__<path to resume partition>__::
+     resume from a swap partition
+ +
+-E.g.:
+-+
+-----
++[listing]
++.Example
++--
+ resume=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
+ resume=/dev/disk/by-uuid/3f5ad593-4546-4a94-a374-bcfb68aa11f7
+ resume=UUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
+-----
++--
+ 
+ **rd.skipfsck**::
+     skip fsck for rootfs and _/usr_.  If you're mounting _/usr_ read-only and
+@@ -102,19 +104,19 @@ resume=UUID=3f5ad593-4546-4a94-a374-bcfb68aa11f7
+ 
+ Misc
+ ~~~~
+-**rd.driver.blacklist=**_<drivername>[,<drivername>,...]_::
++**rd.driver.blacklist=**__<drivername>__[,__<drivername>__,...]::
+     do not load kernel module <drivername>. This parameter can be specified
+     multiple times.
+ 
+-**rd.driver.pre=**_<drivername>[,<drivername>,...]_::
++**rd.driver.pre=**__<drivername>__[,__<drivername>__,...]::
+     force loading kernel module <drivername>. This parameter can be specified
+     multiple times.
+ 
+-**rd.driver.post=**_<drivername>[,<drivername>,...]_::
++**rd.driver.post=**__<drivername>__[,__<drivername>__,...]::
+     force loading kernel module <drivername> after all automatic loading modules
+     have been loaded. This parameter can be specified multiple times.
+ 
+-**rd.retry=**_<seconds>_::
++**rd.retry=**__<seconds>__::
+     specify how long dracut should wait for devices to appear.
+     The default is 30 seconds. After 2/3 of the time, degraded raids are force
+     started. If you have hardware, which takes a very long time to announce its
+@@ -123,7 +125,7 @@ Misc
+ **rd.noverifyssl**::
+     accept self-signed certificates for ssl downloads.
+ 
+-**rd.ctty=**_<terminal device>_**::
++**rd.ctty=**__<terminal device>__::
+    specify the controlling terminal for the console.
+    This is useful, if you have multiple "console=" arguments.
+ 
+@@ -150,17 +152,20 @@ It should be attached to any report about dracut problems.
+     If "quiet" is set, it also logs to the console.
+ 
+ **rd.memdebug=[0-3]**::
+-    Print memory usage info at various points, set the verbose level from 0 to 3
++    Print memory usage info at various points, set the verbose level from 0 to 3. +
+     Higher level means more debugging output:
+++
++----
+     0 - no output
+     1 - partial /proc/meminfo
+     2 - /proc/meminfo
+     3 - /proc/meminfo + /proc/slabinfo
++----
+ 
+ **rd.break**::
+     drop to a shell at the end
+ 
+-**rd.break=**_{cmdline|pre-udev|pre-trigger|initqueue|pre-mount|mount|pre-pivot|cleanup}_::
++**rd.break=**__{cmdline|pre-udev|pre-trigger|initqueue|pre-mount|mount|pre-pivot|cleanup}__::
+     drop to a shell on defined breakpoint
+ 
+ **rd.udev.info**::
+@@ -171,50 +176,56 @@ It should be attached to any report about dracut problems.
+ 
+ I18N
+ ~~~~
+-**vconsole.keymap=**_<keymap base file name>_::
++**rd.vconsole.keymap=**__<keymap base file name>__::
+     keyboard translation table loaded by loadkeys; taken from keymaps directory;
+-    will be written as KEYMAP to _/etc/vconsole.conf_ in the initramfs, e.g.:
++    will be written as KEYMAP to _/etc/vconsole.conf_ in the initramfs.
+ +
+-----
+-vconsole.keymap=de-latin1-nodeadkeys
+-----
++[listing]
++.Example
++--
++rd.vconsole.keymap=de-latin1-nodeadkeys
++--
+ 
+-**vconsole.keymap.ext=**_<list of keymap base file names>_::
++**rd.vconsole.keymap.ext=**__<list of keymap base file names>__::
+     list of extra keymaps to bo loaded (sep. by space); will be written as
+     EXT_KEYMAP to _/etc/vconsole.conf_ in the initramfs
+ 
+-**vconsole.unicode**[=_{0|1}_]::
++**rd.vconsole.unicode**::
+     boolean, indicating UTF-8 mode; will be written as UNICODE to
+     _/etc/vconsole.conf_ in the initramfs
+ 
+-**vconsole.font=**_<font base file name>_::
++**rd.vconsole.font=**__<font base file name>__::
+     console font; taken from consolefonts directory; will be written as FONT to
+-    _/etc/vconsole.conf_ in the initramfs; e.g.:
++    _/etc/vconsole.conf_ in the initramfs.
+ +
+-----
+-vconsole.font=LatArCyrHeb-16
+-----
++[listing]
++.Example
++--
++rd.vconsole.font=LatArCyrHeb-16
++--
+ 
+-**vconsole.font.map=**_<console map base file name>_::
++**rd.vconsole.font.map=**__<console map base file name>__::
+     see description of '-m' parameter in setfont manual; taken from consoletrans
+     directory; will be written as FONT_MAP to _/etc/vconsole.conf_ in the
+     initramfs
+ 
+-**vconsole.font.unimap=**_<unicode table base file name>_::
++**rd.vconsole.font.unimap=**__<unicode table base file name>__::
+     see description of '-u' parameter in setfont manual; taken from unimaps
+     directory; will be written as FONT_UNIMAP to _/etc/vconsole.conf_ in the
+     initramfs
+ 
+-**locale.LANG=**_<locale>_::
++**rd.locale.LANG=**__<locale>__::
+     taken from the environment; if no UNICODE is defined we set its value in
+     basis of LANG value (whether it ends with ".utf8" (or similar) or not); will
+-    be written as LANG to _/etc/locale.conf_ in the initramfs; e.g.:
++    be written as LANG to _/etc/locale.conf_ in the initramfs.
+ +
+-----
+-locale.LANG=pl_PL.utf8
+-----
++[listing]
++.Example
++--
++rd.locale.LANG=pl_PL.utf8
++--
+ 
+-**locale.LC_ALL=**_<locale>_::
++**rd.locale.LC_ALL=**__<locale>__::
+     taken from the environment; will be written as LC_ALL to _/etc/locale.conf_
+     in the initramfs
+ 
+@@ -223,11 +234,11 @@ LVM
+ **rd.lvm=0**::
+     disable LVM detection
+ 
+-**rd.lvm.vg=**_<volume group name>_::
++**rd.lvm.vg=**__<volume group name>__::
+     only activate the volume groups with the given name. rd.lvm.vg can be
+     specified multiple times on the kernel command line.
+ 
+-**rd.lvm.lv=**_<logical volume name>_::
++**rd.lvm.lv=**__<logical volume name>__::
+     only activate the logical volumes with the given name. rd.lvm.lv can be
+     specified multiple times on the kernel command line.
+ 
+@@ -239,14 +250,14 @@ crypto LUKS
+ **rd.luks=0**::
+     disable crypto LUKS detection
+ 
+-**rd.luks.uuid=**_<luks uuid>_::
++**rd.luks.uuid=**__<luks uuid>__::
+     only activate the LUKS partitions with the given UUID. Any "luks-" of the
+     LUKS UUID is removed before comparing to _<luks uuid>_.
+     The comparisons also matches, if _<luks uuid>_ is only the beginning of the
+     LUKS UUID, so you don't have to specify the full UUID.
+     This parameter can be specified multiple times.
+ 
+-**rd.luks.allow-discards=**_<luks uuid>_::
++**rd.luks.allow-discards=**__<luks uuid>__::
+     Allow  using  of discards (TRIM) requests for LUKS partitions with the given UUID.
+     Any "luks-" of the LUKS UUID is removed before comparing to _<luks uuid>_.
+     The comparisons also matches, if _<luks uuid>_ is only the beginning of the
+@@ -261,16 +272,18 @@ crypto LUKS
+ 
+ crypto LUKS - key on removable device support
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+-**rd.luks.key=**_<keypath>:<keydev>:<luksdev>_::
++**rd.luks.key=**__<keypath>__:__<keydev>__:__<luksdev>__::
+     _keypath_ is a path to key file to look for. It's REQUIRED. When _keypath_ ends with '.gpg' it's considered to be key encrypted symmetrically with GPG. You will be prompted for password on boot. GPG support comes with 'crypt-gpg' module which needs to be added explicitly.
+ +
+ _keydev_ is a device on which key file resides. It might be kernel name of devices (should start with "/dev/"), UUID (prefixed with "UUID=") or label (prefix with "LABEL="). You don't have to specify full UUID. Just its beginning will suffice, even if its ambiguous. All matching devices will be probed. This parameter is recommended, but not required. If not present, all block devices will be probed, which may significantly increase boot time.
+ +
+ If _luksdev_ is given, the specified key will only be applied for that LUKS device. Possible values are the same as for _keydev_. Unless you have several LUKS devices, you don't have to specify this parameter. The simplest usage is:
+ +
+-----
++[listing]
++.Example
++--
+ rd.luks.key=/foo/bar.key
+-----
++--
+ +
+ As you see, you can skip colons in such a case.
+ +
+@@ -281,20 +294,20 @@ to crypsetup luksFormat with _-d -_, too!
+ 
+ Here follows example for key encrypted with GPG:
+ 
+-----
+-gpg --quiet --decrypt rootkey.gpg \
+-| cryptsetup -d - -v \
+---cipher serpent-cbc-essiv:sha256 \
++[listing]
++--
++gpg --quiet --decrypt rootkey.gpg | \
++cryptsetup -d - -v --cipher serpent-cbc-essiv:sha256 \
+ --key-size 256 luksFormat /dev/sda3
+-----
++--
+ 
+ If you use plain keys, just add path to _-d_ option:
+ 
+-----
+-cryptsetup -d rootkey.key -v \
+---cipher serpent-cbc-essiv:sha256 \
+---key-size 256 luksFormat /dev/sda3
+-----
++[listing]
++--
++cryptsetup -d rootkey.key -v --cipher serpent-cbc-essiv:sha256 \
++ --key-size 256 luksFormat /dev/sda3
++--
+ ===============================
+ 
+ MD RAID
+@@ -314,7 +327,7 @@ MD RAID
+ **rd.md.waitclean=1**::
+     wait for any resync, recovery, or reshape activity to finish before continuing
+ 
+-**rd.md.uuid=**_<md raid uuid>_::
++**rd.md.uuid=**__<md raid uuid>__::
+     only activate the raid sets with the given UUID. This parameter can be
+     specified multiple times.
+ 
+@@ -323,7 +336,7 @@ DM RAID
+ **rd.dm=0**::
+     disable DM RAID detection
+ 
+-**rd.dm.uuid=**_<dm raid uuid>_::
++**rd.dm.uuid=**__<dm raid uuid>__::
+    only activate the raid sets with the given UUID. This parameter can be
+    specified multiple times.
+ 
+@@ -332,15 +345,17 @@ FIPS
+ **rd.fips**::
+     enable FIPS
+ 
+-**boot=**_<boot device>_::
+-    specify the device, where /boot is located. e.g.
++**boot=**__<boot device>__::
++    specify the device, where /boot is located.
+ +
+-----
++[listing]
++.Example
++--
+ boot=/dev/sda1
+ boot=/dev/disk/by-path/pci-0000:00:1f.1-scsi-0:0:1:0-part1
+ boot=UUID=<uuid>
+ boot=LABEL=<label>
+-----
++--
+ 
+ **rd.fips.skipkernel**::
+     skip checksum check of the kernel image. Useful, if the kernel image is not
+@@ -348,7 +363,66 @@ boot=LABEL=<label>
+ 
+ Network
+ ~~~~~~~
+-**ip=**_{dhcp|on|any|dhcp6|auto6|ibft}_::
++
++[IMPORTANT]
++=====================
++It is recommended to either bind an interface to a MAC with the **ifname** argument,
++or to use the systemd-udevd predictable network interface names.
++
++Predictable network interface device names based on:
++
++- firmware/bios-provided index numbers for on-board devices
++- firmware-provided pci-express hotplug slot index number
++- physical/geographical location of the hardware
++- the interface's MAC address
++
++See: http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
++
++Two character prefixes based on the type of interface:
++
++en:: ethernet
++wl:: wlan
++ww:: wwan
++
++Type of names:
++
++o<index>:: on-board device index number
++s<slot>[f<function>][d<dev_id>]:: hotplug slot index number
++x<MAC>:: MAC address
++[P<domain>]p<bus>s<slot>[f<function>][d<dev_id>]:: PCI geographical location
++[P<domain>]p<bus>s<slot>[f<function>][u<port>][..][c<config>][i<interface>]:: USB port number chain
++
++All multi-function PCI devices will carry the [f<function>] number in the
++device name, including the function 0 device.
++
++When using PCI geography, The PCI domain is only prepended when it is not 0.
++
++For USB devices the full chain of port numbers of hubs is composed. If the
++name gets longer than the maximum number of 15 characters, the name is not
++exported.
++The usual USB configuration == 1 and interface == 0 values are suppressed.
++
++PCI ethernet card with firmware index "1"::
++* eno1
++
++PCI ethernet card in hotplug slot with firmware index number::
++* ens1
++
++PCI ethernet multi-function card with 2 ports::
++* enp2s0f0
++* enp2s0f1
++
++PCI wlan card::
++* wlp3s0
++
++USB built-in 3G modem::
++* wwp0s29u1u4i6
++
++USB Android phone::
++* enp0s29u1u2
++=====================
++
++**ip=**__{dhcp|on|any|dhcp6|auto6|ibft}__::
+     dhcp|on|any::: get ip from dhcp server from all interfaces. If root=dhcp, loop
+     sequentially through all interfaces (eth0, eth1, ...) and use the first with
+     a valid DHCP root-path.
+@@ -359,7 +433,7 @@ Network
+ 
+     ibft::: iBFT autoconfiguration
+ 
+-**ip=**_<interface>_:_{dhcp|on|any|dhcp6|auto6}_[:[_<mtu>_][:_<macaddr>_]]::
++**ip=**__<interface>__:__{dhcp|on|any|dhcp6|auto6}__[:[__<mtu>__][:__<macaddr>__]]::
+     This parameter can be specified multiple times.
+ +
+ =====================
+@@ -370,16 +444,7 @@ cannot be used in conjunction with the **ifname** argument for the
+ same <interface>.
+ =====================
+ 
+-[IMPORTANT]
+-=====================
+-It is recommended to either bind <interface> to a MAC with the **ifname**
+-argument. Or use biosdevname to name your interfaces, which will then have names according to their hardware location.
+-
+-em<port>::: for embedded NICs
+-p<slot>#<port>_<virtual instance>::: for cards in PCI slots
+-=====================
+-
+-**ip=**_<client-IP>_:_<server-IP>_:_<gateway-IP>_:_<netmask>_:_<client_hostname>_:_<interface>_:_{none|off|dhcp|on|any|dhcp6|auto6|ibft}_[:[_<mtu>_][:_<macaddr>_]]::
++**ip=**__<client-IP>__:__<server-IP>__:__<gateway-IP>__:__<netmask>__:__<client_hostname>__:__<interface>__:__{none|off|dhcp|on|any|dhcp6|auto6|ibft}__:[:[__<mtu>__][:__<macaddr>__]]::
+     explicit network configuration. If you want do define a IPv6 address, put it
+     in brackets (e.g. [2001:DB8::1]). This parameter can be specified multiple
+     times.
+@@ -390,25 +455,14 @@ cannot be used in conjunction with the **ifname** argument for the
+ same <interface>.
+ =====================
+ 
+-[IMPORTANT]
+-=====================
+-It is recommended to either bind <interface> to a MAC with the **ifname**
+-argument. Or use biosdevname to name your interfaces, which will then have names according to their hardware location.
+-
+-em<port>::: for embedded NICs
+-p<slot>#<port>_<virtual instance>::: for cards in PCI slots
+-=====================
+-
+-**ifname=**_<interface>_:_<MAC>_::
++**ifname=**__<interface>__:__<MAC>__::
+     Assign network device name <interface> (ie "bootnet") to the NIC with MAC <MAC>.
+ +
+-[IMPORTANT]
+-
+-Do **not** use the default kernel naming scheme for the interface name,
++WARNING: Do **not** use the default kernel naming scheme for the interface name,
+ as it can conflict with the kernel names. So, don't use "eth[0-9]+" for the
+ interface name. Better name it "bootnet" or "bluesocket".
+ 
+-**bootdev=**_<interface>_::
++**bootdev=**__<interface>__::
+     specify network interface to use routing and netroot information from.
+     Required if multiple ip= lines are used.
+ 
+@@ -421,12 +475,12 @@ interface name. Better name it "bootnet" or "bluesocket".
+ **rd.neednet=1**::
+     boolean, bring up network even without netroot set
+ 
+-**vlan=_<vlanname>_:_<phydevice>_**::
++**vlan=**__<vlanname>__:__<phydevice>__::
+     Setup vlan device named <vlanname> on <phydeivce>.
+     We support the four styles of vlan names: VLAN_PLUS_VID (vlan0005), VLAN_PLUS_VID_NO_PAD (vlan5),
+     DEV_PLUS_VID (eth0.0005), DEV_PLUS_VID_NO_PAD (eth0.5)
+ 
+-**bond=_<bondname>_[:_<bondslaves>_:[:_<options>_]]**::
++**bond=**__<bondname>__[:__<bondslaves>__:[:__<options>__]]::
+     Setup bonding device <bondname> on top of <bondslaves>.
+     <bondslaves> is a comma-separated list of physical (ethernet) interfaces.
+     <options> is a comma-separated list on bonding options (modinfo bonding for details)
+@@ -434,68 +488,63 @@ interface name. Better name it "bootnet" or "bluesocket".
+     then its values should be separated by semicolon.
+     Bond without parameters assumes bond=bond0:eth0,eth1:mode=balance-rr
+ 
+-**team =_<teammaster>_:_<teamslaves>_**::
++**team=**__<teammaster>__:__<teamslaves>__::
+     Setup team device <teammaster> on top of <teamslaves>.
+     <teamslaves> is a comma-separated list of physical (ethernet) interfaces.
+ 
+-**bridge=_<bridgename>_:_<ethnames>_**::
++**bridge=**__<bridgename>__:__<ethnames>__::
+     Setup bridge <bridgename> with <ethnames>. <ethnames> is a comma-separated
+     list of physical (ethernet) interfaces. Bridge without parameters assumes bridge=br0:eth0
+ 
+-
+ NFS
+ ~~~
+-**root=**[_<server-ip>_:]_<root-dir>_[:_<nfs-options>_]::
++**root=**\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__]::
+     mount nfs share from <server-ip>:/<root-dir>, if no server-ip is given, use
+     dhcp next_server. if server-ip is an IPv6 address it has to be put in
+     brackets, e.g. [2001:DB8::1]. NFS options can be appended with the prefix
+     ":" or "," and are seperated by ",".
+ 
+-**root=**nfs:[_<server-ip>_:]_<root-dir>_[:_<nfs-options>_], **root=**nfs4:[_<server-ip>_:]_<root-dir>_[:_<nfs-options>_], **root=**_{dhcp|dhcp6}_::
++**root=**nfs:\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__], **root=**nfs4:\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__], **root=**__{dhcp|dhcp6}__::
+     root=dhcp alone directs initrd to look at the DHCP root-path where NFS
+     options can be specified.
+ +
+-----
++[listing]
++.Example
++--
+     root-path=<server-ip>:<root-dir>[,<nfs-options>]
+     root-path=nfs:<server-ip>:<root-dir>[,<nfs-options>]
+     root-path=nfs4:<server-ip>:<root-dir>[,<nfs-options>]
+-----
++--
+ 
+-**root=**_/dev/nfs_ nfsroot=[_<server-ip>_:]_<root-dir>_[:_<nfs-options>_]::
++**root=**_/dev/nfs_ nfsroot=\[_<server-ip>_:]__<root-dir>__[:__<nfs-options>__]::
+     _Deprecated!_ kernel Documentation_/filesystems/nfsroot.txt_ defines this
+     method. This is supported by dracut, but not recommended.
+ 
+-**rd.nfs.domain=**_<NFSv4 domain name>_::
++**rd.nfs.domain=**__<NFSv4 domain name>__::
+     Set the NFSv4 domain name. Will overwrite the settings in _/etc/idmap.conf_.
+ 
+ CIFS
+ ~~~
+-**root=**cifs://[_<username>_[:_<password>_]@]_<server-ip>_:_<root-dir>_::
++**root=**cifs://[__<username>__[:__<password>__]@]__<server-ip>__:__<root-dir>__::
+     mount cifs share from <server-ip>:/<root-dir>, if no server-ip is given, use
+     dhcp next_server. if server-ip is an IPv6 address it has to be put in
+     brackets, e.g. [2001:DB8::1]. If a username or password are not specified
+ as part of the root, then they must be passed on the command line through
+ cifsuser/cifspass.
+ +
+-[WARNING]
+-====
+-Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+-====
++WARNING: Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+ 
+-**cifsuser=_<username>_::
++**cifsuser**=__<username>__::
+     Set the cifs username, if not specified as part of the root.
+ 
+-**cifspass=_<password>_::
++**cifspass**=__<password>__::
+     Set the cifs password, if not specified as part of the root.
+ +
+-[WARNING]
+-====
+-Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+-====
++WARNING: Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+ 
+ iSCSI
+ ~~~~~
+-**root=**iscsi:[_<username>_:_<password>_[:_<reverse>_:_<password>_]@][_<servername>_]:[_<protocol>_]:[_<port>_][:[_<iscsi_iface_name>_]:[_<netdev_name>_]]:[_<LUN>_]:_<targetname>_::
++**root=**iscsi:[__<username>__:__<password>__[:__<reverse>__:__<password>__]@][__<servername>__]:[__<protocol>__]:[__<port>__][:[__<iscsi_iface_name>__]:[__<netdev_name>__]]:[__<LUN>__]:__<targetname>__::
+     protocol defaults to "6", LUN defaults to "0". If the "servername" field is
+     provided by BOOTP or DHCP, then that field is used in conjunction with other
+     associated fields to contact the boot server in the Boot stage. However, if
+@@ -503,85 +552,84 @@ iSCSI
+     used in the Discovery Service stage in conjunction with other associated
+     fields. See
+     link:$$http://tools.ietf.org/html/rfc4173#section-5$$[rfc4173].
+-    e.g.:
+ +
+-----
++WARNING: Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+++
++[listing]
++.Example
++--
+ root=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
+-----
++--
+ +
+-If servername is an IPv6 address, it has to be put in brackets. e.g.:
++If servername is an IPv6 address, it has to be put in brackets:
+ +
+-----
++[listing]
++.Example
++--
+ root=iscsi:[2001:DB8::1]::::iqn.2009-06.dracut:target0
+-----
+-+
+-[WARNING]
+-====
+-Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path.
+-====
++--
+ 
+-**root=**_???_ **netroot=**iscsi:[_<username>_:_<password>_[:_<reverse>_:_<password>_]@][_<servername>_]:[_<protocol>_]:[_<port>_][:[_<iscsi_iface_name>_]:[_<netdev_name>_]]:[_<LUN>_]:_<targetname>_ ...::
+-    multiple netroot options allow setting up multiple iscsi disks. e.g.:
++**root=**__???__ **netroot=**iscsi:[__<username>__:__<password>__[:__<reverse>__:__<password>__]@][__<servername>__]:[__<protocol>__]:[__<port>__][:[__<iscsi_iface_name>__]:[__<netdev_name>__]]:[__<LUN>__]:__<targetname>__ ...::
++    multiple netroot options allow setting up multiple iscsi disks:
+ +
+-----
++[listing]
++.Example
++--
+ root=UUID=12424547
+ netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target0
+ netroot=iscsi:192.168.50.1::::iqn.2009-06.dracut:target1
+-----
++--
+ +
+-If servername is an IPv6 address, it has to be put in brackets. e.g.:
++If servername is an IPv6 address, it has to be put in brackets:
+ +
+-----
++[listing]
++.Example
++--
+ netroot=iscsi:[2001:DB8::1]::::iqn.2009-06.dracut:target0
+-----
++--
+ +
+-[WARNING]
+-====
+-Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path. You may want to use rd.iscsi.firmware.
+-====
++WARNING: Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path. You may want to use rd.iscsi.firmware.
+ 
+-**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>_::
++**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>__::
+     manually specify all iscsistart parameter (see **+iscsistart --help+**)
+ +
+-[WARNING]
+-====
+-Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path. You may want to use rd.iscsi.firmware.
+-====
++WARNING: Passwords specified on the kernel command line are visible for all users via the file _/proc/cmdline_ and via dmesg or can be sniffed on the network, when using DHCP with DHCP root-path. You may want to use rd.iscsi.firmware.
+ 
+ **root=**_???_ **netroot=**iscsi **rd.iscsi.firmware=1**::
+  will read the iscsi parameter from the BIOS firmware
+ 
+-**rd.iscsi.param=**_<param>_::
++**rd.iscsi.param=**__<param>__::
+     <param> will be passed as "--param <param>" to iscsistart.
+     This parameter can be specified multiple times.
+-    e.g.:
+ +
+-----
++[listing]
++.Example
++--
+ "netroot=iscsi rd.iscsi.firmware=1 rd.iscsi.param=node.session.timeo.replacement_timeout=30"
+-----
++--
+ +
+ will result in
+ +
+-----
++[listing]
++--
+ iscsistart -b --param node.session.timeo.replacement_timeout=30
+-----
++--
+ 
+ FCoE
+ ~~~~
+-**fcoe=**_<edd|interface|MAC>_:_{dcb|nodcb}_::
++**fcoe=**__<edd|interface|MAC>__:__{dcb|nodcb}__::
+     Try to connect to a FCoE SAN through the NIC specified by _<interface>_ or
+     _<MAC>_ or EDD settings. For the second argument, currently only nodcb is
+     supported. This parameter can be specified multiple times.
+ +
+-[NOTE]
+-letters in the MAC-address must be lowercase!
++NOTE: letters in the MAC-address must be lowercase!
+ 
+ NBD
+ ~~~
+-**root=**??? **netroot=**nbd:_<server>_:_<port>_[:_<fstype>_[:_<mountopts>_[:_<nbdopts>_]]]::
++**root=**??? **netroot=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
+     mount nbd share from <server>
+ 
+-**root=dhcp** with **dhcp** **root-path=**nbd:_<server>_:_<port>_[:_<fstype>_[:_<mountopts>_[:_<nbdopts>_]]]::
++**root=dhcp** with **dhcp** **root-path=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
+     root=dhcp alone directs initrd to look at the DHCP root-path where NBD
+     options can be specified. This syntax is only usable in cases where you are
+     directly mounting the volume as the rootfs.
+@@ -593,25 +641,29 @@ DASD
+ 
+ ZFCP
+ ~~~~
+-**rd.zfcp=**_<zfcp adaptor device bus ID>_,_<WWPN>_,_<FCPLUN>_::
+-    rd.zfcp can be specified multiple times on the kernel command line. e.g.: 
++**rd.zfcp=**__<zfcp adaptor device bus ID>__,__<WWPN>__,__<FCPLUN>__::
++    rd.zfcp can be specified multiple times on the kernel command line.
+ +
+-----
++[listing]
++.Example
++--
+ rd.zfcp=0.0.4000,0x5005076300C213e9,0x5022000000000000
+-----
++--
+ 
+ **rd.zfcp.conf=0**::
+     ignore zfcp.conf included in the initramfs
+ 
+ ZNET
+ ~~~~
+-**rd.znet=**_<nettype>_,_<subchannels>_,_<options>_::
+-    rd.znet can be specified multiple times on the kernel command line. e.g.: 
++**rd.znet=**__<nettype>__,__<subchannels>__,__<options>__::
++    rd.znet can be specified multiple times on the kernel command line.
+ +
+-----
++[listing]
++.Example
++--
+ rd.znet=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=1,portname=foo
+ rd.znet=ctc,0.0.0600,0.0.0601,protocol=bar
+-----
++--
+ 
+ Plymouth Boot Splash
+ ~~~~~~~~~~~~~~~~~~~~
+@@ -623,33 +675,41 @@ Plymouth Boot Splash
+ 
+ Kernel keys
+ ~~~~~~~~~~~
+-**masterkey=**_<kernel master key path name>_::
+-    Set the path name of the kernel master key. e.g.: 
++**masterkey=**__<kernel master key path name>__::
++    Set the path name of the kernel master key.
+ +
+-----
++[listing]
++.Example
++--
+ masterkey=/etc/keys/kmk-trusted.blob
+-----
++--
+ 
+-**masterkeytype=**_<kernel master key type>_::
+-    Set the type of the kernel master key. e.g.: 
++**masterkeytype=**__<kernel master key type>__::
++    Set the type of the kernel master key.
+ +
+-----
++[listing]
++.Example
++--
+ masterkeytype=trusted
+-----
++--
+ 
+-**evmkey=**_<EVM key path name>_::
+-    Set the path name of the EVM key. e.g.: 
++**evmkey=**__<EVM key path name>__::
++    Set the path name of the EVM key.
+ +
+-----
++[listing]
++.Example
++--
+ evmkey=/etc/keys/evm-trusted.blob
+-----
++--
+ 
+-**ecryptfskey=**_<eCryptfs key path name>_::
+-    Set the path name of the eCryptfs key. e.g.: 
++**ecryptfskey=**__<eCryptfs key path name>__::
++    Set the path name of the eCryptfs key.
+ +
+-----
++[listing]
++.Example
++--
+ ecryptfskey=/etc/keys/ecryptfs-trusted.blob
+-----
++--
+ 
+ Deprecated, renamed Options
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
+diff --git a/dracut.css b/dracut.css
+index e419a06..357ede1 100644
+--- a/dracut.css
++++ b/dracut.css
+@@ -14,45 +14,6 @@ body {
+ 	color:black;
+ }
+ 
+-body.toc_embeded {
+-	/*for web hosting system only*/
+-	margin-left: 300px;
+-}
+-
+-object.toc, iframe.toc {
+-	/*for web hosting system only*/
+-	border-style:none;
+-	position:fixed;
+-	width:290px;
+-	height:99.99%;
+-	top:0;
+-	left:0;
+-	z-index: 100;
+-	border-style:none;
+-	border-right:1px solid #999;
+-}
+-
+-/* Hide web menu */
+-
+-body.notoc {
+-	margin-left: 3em;
+-}
+-
+-iframe.notoc {
+-	border-style:none;
+-	border: none;
+-	padding: 0em;
+-	position:fixed;
+-	width: 21px;
+-	height: 29px;
+-	top: 0px;
+-	left:0;
+-	overflow: hidden;
+-	margin: 0em;
+-	margin-left: -3px;
+-}
+-/* End hide web menu */
+-
+ /* desktop styles */
+ body.desktop {
+ 	margin-left: 26em;
+@@ -166,7 +127,6 @@ h1 {
+ 	margin-bottom: 0em;
+ 	font-size: 3.0em;
+ 	font-weight: bold;
+-	background: #003d6e url(../images/h1-bg.png) top left repeat-x;
+ 	color: white;
+ 	text-align: center;
+ 	padding: 0.7em;
+@@ -480,106 +440,14 @@ h3.author {
+ 	font-weight:bold;
+ }
+ 
+-/* inline syntax highlighting */
+-.perl_Alert {
+-	color: #0000ff;
+-}
+-
+-.perl_BaseN {
+-	color: #007f00;
+-}
+-
+-.perl_BString {
+-	color: #5C3566;
+-}
+-
+-.perl_Char {
+-	color: #ff00ff;
+-}
+-
+-.perl_Comment {
+-	color: #FF00FF;
+-}
+-
+-
+-.perl_DataType {
+-	color: #0000ff;
+-}
+-
+-
+-.perl_DecVal {
+-	color: #00007f;
+-}
+-
+-
+-.perl_Error {
+-	color: #ff0000;
+-}
+-
+-
+-.perl_Float {
+-	color: #00007f;
+-}
+-
+-
+-.perl_Function {
+-	color: #007f00;
+-}
+-
+-
+-.perl_IString {
+-	color: #5C3566;
+-}
+-
+-
+-.perl_Keyword {
+-	color: #002F5D;
+-}
+-
+-
+-.perl_Operator {
+-	color: #ffa500;
+-}
+-
+-
+-.perl_Others {
+-	color: #b03060;
+-}
+-
+-
+-.perl_RegionMarker {
+-	color: #96b9ff;
+-}
+-
+-
+-.perl_Reserved {
+-	color: #9b30ff;
+-}
+-
+-
+-.perl_String {
+-	color: #5C3566;
+-}
+-
+-
+-.perl_Variable {
+-	color: #0000ff;
+-}
+-
+-
+-.perl_Warning {
+-	color: #0000ff;
+-}
+ 
+ /*Lists*/
+ ul {
+ 	padding-left:1.6em;
+-	list-style-image:url(../images/dot.png);
+ 	list-style-type: circle;
+ }
+ 
+ ul ul {
+-	list-style-image:url(../images/dot2.png);
+ 	list-style-type: circle;
+ }
+ 
+@@ -769,21 +637,6 @@ code {
+ 	word-wrap: break-word; /* Internet Explorer 5.5+ */
+ }
+ 
+-/*Notifications*/
+-div.warning:before {
+-	content:url(../images/warning.png);
+-	padding-left: 5px;
+-}
+-
+-div.note:before {
+-	content:url(../images/note.png);
+-	padding-left: 5px;
+-}
+-
+-div.important:before {
+-	content:url(../images/important.png);
+-	padding-left: 5px;
+-}
+ 
+ div.warning, div.note, div.important {
+ 	color: black;
+@@ -792,7 +645,8 @@ div.warning, div.note, div.important {
+ 	background: none;
+ 	background-color: white;
+ 	margin-bottom: 1em;
+-	border-bottom: 1px solid #aaaaaa;
++	padding-left: 1em;
++	border-left: 2px solid #aaaaaa;
+ }
+ 
+ div.warning h2, div.note h2,div.important h2 {
+@@ -817,20 +671,6 @@ div.admonition_header {
+ 	font-size: 1.0em;
+ }
+ 
+-div.warning div.admonition_header {
+-	background: url(../images/red.png) top left repeat-x;
+-	background-color: #590000;
+-}
+-
+-div.note div.admonition_header {
+-	background: url(../images/green.png) top right repeat-x;
+-	background-color: #597800;
+-}
+-
+-div.important div.admonition_header {
+-	background: url(../images/yellow.png) top right repeat-x;
+-	background-color: #a6710f;
+-}
+ 
+ div.warning p, div.warning div.para,
+ div.note p, div.note div.para,
+@@ -1131,266 +971,6 @@ ul li p:last-child, ul li div.para:last-child {
+ 	padding-bottom:0em;
+ }
+ 
+-/*document navigation*/
+-.docnav a, .docnav strong {
+-	border:none;
+-	text-decoration:none;
+-	font-weight:normal;
+-}
+-
+-.docnav {
+-	list-style:none;
+-	margin:0em;
+-	padding:0em;
+-	position:relative;
+-	width:100%;
+-	padding-bottom:2em;
+-	padding-top:1em;
+-	border-top:1px dotted #ccc;
+-}
+-
+-.docnav li {
+-	list-style:none;
+-	margin:0em;
+-	padding:0em;
+-	display:inline;
+-	font-size:.8em;
+-}
+-
+-.docnav li:before {
+-	content:" ";
+-}
+-
+-.docnav li.previous, .docnav li.next {
+-	position:absolute;
+-	top:1em;
+-}
+-
+-.docnav li.up, .docnav li.home {
+-	margin:0em 1.5em;
+-}
+-
+-.docnav li.previous {
+-	left:0px;
+-	text-align:left;
+-}
+-
+-.docnav li.next {
+-	right:0px;
+-	text-align:right;
+-}
+-
+-.docnav li.previous strong, .docnav li.next strong {
+-	height:22px;
+-	display:block;
+-}
+-
+-.docnav {
+-	margin:0 auto;
+-	text-align:center;
+-}
+-
+-.docnav li.next a strong {
+-	background:  url(../images/stock-go-forward.png) top right no-repeat;
+-	padding-top:3px;
+-	padding-bottom:4px;
+-	padding-right:28px;
+-	font-size:1.2em;
+-}
+-
+-.docnav li.previous a strong {
+-	background: url(../images/stock-go-back.png) top left no-repeat;
+-	padding-top:3px;
+-	padding-bottom:4px;
+-	padding-left:28px;
+-	padding-right:0.5em;
+-	font-size:1.2em;
+-}
+-
+-.docnav li.home a strong {
+-	background: url(../images/stock-home.png) top left no-repeat;
+-	padding:5px;
+-	padding-left:28px;
+-	font-size:1.2em;
+-}
+-
+-.docnav li.up a strong {
+-	background: url(../images/stock-go-up.png) top left no-repeat;
+-	padding:5px;
+-	padding-left:28px;
+-	font-size:1.2em;
+-}
+-
+-.docnav a:link, .docnav a:visited {
+-	color:#666;
+-}
+-
+-.docnav a:hover, .docnav a:focus, .docnav a:active {
+-	color:black;
+-}
+-
+-.docnav a {
+-	max-width: 10em;
+-	overflow:hidden;
+-}
+-
+-.docnav a:link strong {
+-	text-decoration:none;
+-}
+-
+-.docnav {
+-	margin:0 auto;
+-	text-align:center;
+-}
+-
+-ul.docnav {
+-	margin-bottom: 1em;
+-}
+-/* Reports */
+-.reports ul {
+-	list-style:none;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.reports li{
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.reports li.odd {
+-	background-color: #eeeeee;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.reports dl {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-	float:right;
+-	margin-right: 17em;
+-	margin-top:-1.3em;
+-}
+-
+-.reports dt {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.reports dd {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-	padding-right:.5em;
+-}
+-
+-.reports h2, .reports h3{
+-	display:inline;
+-	padding-right:.5em;
+-	font-size:10pt;
+-	font-weight:normal;
+-}
+-
+-.reports div.progress {
+-	display:inline;
+-	float:right;
+-	width:16em;
+-	background:#c00 url(../images/shine.png) top left repeat-x;
+-	margin:0em;
+-	margin-top:-1.3em;
+-	padding:0em;
+-	border:none;
+-}
+-
+-/*uniform*/
+-body.results, body.reports {
+-	max-width:57em ;
+-	padding:0em;
+-}
+-
+-/*Progress Bar*/
+-div.progress {
+-	display:block;
+-	float:left;
+-	width:16em;
+-	background:#c00 url(../images/shine.png) top left repeat-x;
+-	height:1em;
+-}
+-
+-div.progress span {
+-	height:1em;
+-	float:left;
+-}
+-
+-div.progress span.translated {
+-	background:#6c3 url(../images/shine.png) top left repeat-x;
+-}
+-
+-div.progress span.fuzzy {
+-	background:#ff9f00 url(../images/shine.png) top left repeat-x;
+-}
+-
+-
+-/*Results*/
+-
+-.results ul {
+-	list-style:none;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.results li{
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.results li.odd {
+-	background-color: #eeeeee;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.results dl {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-	float:right;
+-	margin-right: 17em;
+-	margin-top:-1.3em;
+-}
+-
+-.results dt {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-}
+-
+-.results dd {
+-	display:inline;
+-	margin:0em;
+-	padding:0em;
+-	padding-right:.5em;
+-}
+-
+-.results h2, .results h3 {
+-	display:inline;
+-	padding-right:.5em;
+-	font-size:10pt;
+-	font-weight:normal;
+-}
+-
+-.results div.progress {
+-	display:inline;
+-	float:right;
+-	width:16em;
+-	background:#c00 url(../images/shine.png) top left repeat-x;
+-	margin:0em;
+-	margin-top:-1.3em;
+-	padding:0em;
+-	border:none;
+-}
+ 
+ /* Dirty EVIL Mozilla hack for round corners */
+ pre {
+@@ -1423,12 +1003,6 @@ span.remark {
+ 	background-color: #ff00ff;
+ }
+ 
+-.draft {
+-	background-image: url(../images/watermark-draft.png);
+-	background-repeat: repeat-y;
+-        background-position: center;
+-}
+-
+ .foreignphrase {
+ 	font-style: inherit;
+ }
+@@ -1513,10 +1087,6 @@ h1 {
+ 	color:#3c6eb4
+ }
+ 
+-.producttitle {
+-	background: #3c6eb4 url(../images/h1-bg.png) top left repeat;
+-}
+-
+ .section h1.title {
+ 	color:#3c6eb4;
+ }
+diff --git a/dracut.modules.7.asc b/dracut.modules.7.asc
+new file mode 100644
+index 0000000..4cb2aa1
+--- /dev/null
++++ b/dracut.modules.7.asc
+@@ -0,0 +1,293 @@
++DRACUT.MODULES(7)
++=================
++:doctype: manpage
++:man source:   dracut
++:man manual:   dracut
++
++NAME
++----
++dracut.modules - dracut modules
++
++DESCRIPTION
++-----------
++== dracut Components
++
++dracut uses a modular system to build and extend the initramfs image. All
++modules are located in _/usr/lib/dracut/modules.d_ or in _<git-src>/modules.d_.
++The most basic dracut module is _99base_. In _99base_ the initial shell script
++init is defined, which gets run by the kernel after initramfs loading. Although
++you can replace init with your own version of _99base_, this is not encouraged.
++Instead you should use, if possible, the hooks of dracut. All hooks, and the
++point of time in which they are executed, are described in <<stages>>.
++
++The main script, which creates the initramfs is dracut itsself. It parses all
++arguments and sets up the directory, in which everything is installed. It then
++executes all check, install, installkernel scripts found in the modules, which
++are to be processed. After everything is installed, the install directory is
++archived and compressed to the final initramfs image. All helper functions used
++by check, install and installkernel are found in in the file _dracut-functions_.
++These shell functions are available to all module installer (install,
++installkernel) scripts, without the need to source _dracut-functions_.
++
++A module can check the preconditions for install and installkernel with the
++check script. Also dependencies can be expressed with check. If a module passed
++check, install and installkernel will be called to install all of the necessary
++files for the module. To split between kernel and non-kernel parts of the
++installation, all kernel module related parts have to be in installkernel. All
++other files found in a module directory are module specific and mostly are hook
++scripts and udev rules.
++
++
++[[stages]]
++== Boot Process Stages
++
++dracut modules can insert custom script at various points, to control the boot
++process.
++These hooks are plain directories containing shell scripts ending with ".sh",
++which are sourced by init.
++Common used functions are in _dracut-lib.sh_, which can be sourced by any script.
++
++=== Hook: cmdline
++
++The _cmdline_ hook is a place to insert scripts to parse the kernel command line
++and prepare the later actions, like setting up udev rules and configuration
++files.
++
++In this hook the most important environment variable is defined: root. The
++second one is rootok, which indicates, that a module claimed to be able to parse
++the root defined. So for example, **root=**__iscsi:....__ will be claimed by the
++iscsi dracut module, which then sets rootok.
++
++=== Hook: pre-udev
++
++This hook is executed right after the cmdline hook and a check if root and
++rootok were set. Here modules can take action with the final root, and before
++udev has been run.
++
++=== Start Udev
++
++Now udev is started and the logging for udev is setup.
++
++=== Hook: pre-trigger
++
++In this hook, you can set udev environment variables with **udevadm control
++--property=KEY=_value_** or control the further execution of udev with
++udevadm.
++
++=== Trigger Udev
++
++udev is triggered by calling udevadm trigger, which sends add events for all
++devices and subsystems.
++
++=== Main Loop
++
++In the main loop of dracut loops until udev has settled and
++all scripts in _initqueue/finished_ returned true.
++In this loop there are three hooks, where scripts can be inserted
++by calling /sbin/initqueue.
++
++==== Initqueue
++
++This hook gets executed every time a script is inserted here, regardless of the
++udev state.
++
++==== Initqueue settled
++
++This hooks (initqueue/settled) gets executed every time udev has settled.
++
++==== Initqueue timeout
++
++This hooks (initqueue/timeout) gets executed, when the main loop counter becomes half of the
++rd.retry counter.
++
++==== Initqueue finished
++
++This hook (initqueue/finished) is called after udev has settled and
++if all scripts herein return 0 the main loop will be ended.
++Abritary scripts can be added here, to loop in the
++initqueue until something happens, which a dracut module wants to wait for.
++
++=== Hook: pre-mount
++
++Before the root device is mounted all scripts in the hook pre-mount are
++executed. In some cases (e.g. NFS) the real root device is already mounted,
++though.
++
++=== Hook: mount
++
++This hook is mainly to mount the real root device.
++
++=== Hook: pre-pivot
++
++This hook is called before cleanup hook, This is a good place for
++actions other than cleanups which need to be called before pivot.
++
++=== Hook: cleanup
++
++This hook is the last hook and is called before init finally switches root to
++the real root device. This is a good place to clean up and kill processes not
++needed anymore.
++
++
++=== Cleanup and switch_root
++
++Init (or systemd) kills all udev processes, cleans up the environment,
++sets up the arguments for the real init process and finally calls switch_root.
++switch_root removes the whole filesystem hierarchy of the initramfs,
++chroot()s to the real root device and calls /sbin/init with the specified arguments.
++
++To ensure all files in the initramfs hierarchy can be removed, all processes
++still running from the initramfs should not have any open file descriptors left.
++
++== Network Infrastructure
++
++FIXME
++
++== Writing a Module
++
++A simple example module is _96insmodpost_, which modprobes a kernel module after
++udev has settled and the basic device drivers have been loaded.
++
++All module installation information is in the file module-setup.sh.
++
++First we create a check() function, which just exits with 0 indicating that this
++module should be included by default.
++
++check():
++----
++return 0
++----
++
++The we create the install() function, which installs a cmdline hook with
++priority number 20 called _parse-insmodpost.sh_. It also installs the
++_insmodpost.sh_ script in _/sbin_.
++
++install():
++----
++inst_hook cmdline 20 "$moddir/parse-insmodpost.sh"
++inst_simple "$moddir/insmodpost.sh" /sbin/insmodpost.sh
++----
++
++The _pase-instmodpost.sh_ parses the kernel command line for a argument
++rd.driver.post, blacklists the module from being autoloaded and installs the
++hook _insmodpost.sh_ in the _initqueue/settled_.
++
++_parse-insmodpost.sh_:
++----
++for p in $(getargs rd.driver.post=); do
++    echo "blacklist $p" >> /etc/modprobe.d/initramfsblacklist.conf
++    _do_insmodpost=1
++done
++
++[ -n "$_do_insmodpost" ] && /sbin/initqueue --settled --unique --onetime /sbin/insmodpost.sh
++unset _do_insmodpost
++
++----
++
++_insmodpost.sh_, which is called in the _initqueue/settled_ hook will just
++modprobe the kernel modules specified in all rd.driver.post kernel command line
++parameters. It runs after udev has settled and is only called once (--onetime).
++
++_insmodpost.sh_:
++----
++. /lib/dracut-lib.sh
++
++for p in $(getargs rd.driver.post=); do
++    modprobe $p
++done
++
++----
++
++
++=== module-setup.sh: check()
++
++_check()_ is called by dracut to evaluate the inclusion of a dracut module in
++the initramfs.
++
++$hostonly:: If the $hostonly variable is set, then the module check() function
++should be in "hostonly" mode, which means, that the check() should only return
++0, if the module is really needed to boot this specific host.
++
++check() should return with:
++
++0:: Include the dracut module in the initramfs.
++
++1:: Do not include the dracut module. The requirements are not fullfilled
++(missing tools, etc.)
++
++255:: Only include the dracut module, if another module requires it or if
++explicitly specified in the config file or on the argument list.
++
++
++=== module-setup.sh: depends()
++
++The function depends() should echo all other dracut module names the module
++depends on.
++
++=== module-setup.sh: cmdline()
++
++This function should print the kernel command line options needed to boot the current
++machine setup. It should start with a space and should not print a newline.
++
++=== module-setup.sh: install()
++
++The install() function is called to install everything non-kernel related. To install
++binaries, scripts, and other files, you can use the functions mentioned in <<creation>>.
++
++To address a file in the current module directory, use the variable "$moddir".
++
++=== module-setup.sh: installkernel()
++
++In installkernel() all kernel related files should be installed. You can use all of the functions
++mentioned in <<creation>> to install files.
++
++=== [[creation]]Creation Functions
++
++==== inst_multiple [-o] <file> [ <file> ...]
++
++installs multiple binaries and files. If executables are specified without a path, dracut
++will search the path PATH=/usr/sbin:/sbin:/usr/bin:/bin for the binary. If the option "-o"
++is given as the first parameter, a missing file does not lead to an error.
++
++==== inst <src> [<dst>]
++
++installs _one_ file <src> either to the same place in the initramfs or to an optional <dst>.
++
++==== inst_hook <hookdir> <prio> <src>
++
++installs an executable/script <src> in the dracut hook <hookdir> with priority <prio>.
++
++==== inst_rules <udevrule> [ <udevrule> ...]
++
++installs one ore more udev rules. Non-existant udev rules are reported, but do not let dracut fail.
++
++==== instmods <kernelmodule> [ <kernelmodule> ... ]
++
++instmods should be used only in the installkernel() function.
++
++instmods installs one or more kernel modules in the initramfs. <kernelmodule> can also be a whole
++subsystem, if prefixed with a "=", like "=drivers/net/team".
++
++instmods will not install the kernel module, if $hostonly is set and the kernel module is not currently
++needed by any /sys/*...*/uevent MODALIAS.
++To install a kernel module regardless of the hostonly mode use the form:
++----
++hostonly='' instmods <kernelmodule>
++----
++
++=== Initramfs Functions
++
++FIXME
++
++
++=== Network Modules
++
++FIXME
++
++AUTHOR
++------
++Harald Hoyer
++
++SEE ALSO
++--------
++*dracut*(8)
+diff --git a/dracut.spec b/dracut.spec
+index b1cf9fe..8dfc753 100644
+--- a/dracut.spec
++++ b/dracut.spec
+@@ -316,6 +316,7 @@ rm -rf -- $RPM_BUILD_ROOT
+ %endif
+ %{_mandir}/man7/dracut.kernel.7*
+ %{_mandir}/man7/dracut.cmdline.7*
++%{_mandir}/man7/dracut.modules.7*
+ %{_mandir}/man7/dracut.bootup.7*
+ %{_mandir}/man5/dracut.conf.5*
+ %if %{defined _unitdir}
+diff --git a/dracut.usage.asc b/dracut.usage.asc
+new file mode 100644
+index 0000000..6d37920
+--- /dev/null
++++ b/dracut.usage.asc
+@@ -0,0 +1,526 @@
++To create a initramfs image, the most simple command is:
++----
++# dracut
++----
++
++This will generate a general purpose initramfs image, with all possible
++functionality resulting of the combination of the installed dracut modules and
++system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
++contains the kernel modules of the currently active kernel with version
++_++<kernel version>++_.
++
++If the initramfs image already exists, dracut will display an error message, and
++to overwrite the existing image, you have to use the --force option.
++----
++# dracut --force
++----
++
++If you want to specify another filename for the resulting image you would issue
++a command like:
++----
++# dracut foobar.img
++----
++
++To generate an image for a specific kernel version, the command would be:
++----
++# dracut foobar.img 2.6.40-1.rc5.f20
++----
++
++A shortcut to generate the image at the default location for a specific kernel
++version is:
++----
++# dracut --kver 2.6.40-1.rc5.f20
++----
++
++If you want to create lighter, smaller initramfs images, you may want to specify
++the --hostonly or -H option. Using this option, the resulting image will
++contain only those dracut modules, kernel modules and filesystems, which are
++needed to boot this specific machine. This has the drawback, that you can't put
++the disk on another controller or machine, and that you can't switch to another
++root filesystem, without recreating the initramfs image. The usage of the
++--hostonly option is only for experts and you will have to keep the broken
++pieces. At least keep a copy of a general purpose image (and corresponding
++kernel) as a fallback to rescue your system.
++
++=== Inspecting the Contents
++To see the contents of the image created by dracut, you can use the lsinitrd tool.
++----
++# lsinitrd | less
++----
++
++To display the contents of a file in the initramfs also use the lsinitrd tool:
++----
++# lsinitrd -f /etc/ld.so.conf
++include ld.so.conf.d/*.conf
++----
++
++=== Adding dracut Modules
++Some dracut modules are turned off by default and have to be activated manually.
++You can do this by adding the dracut modules to the configuration file
++_/etc/dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_. See *dracut.conf*(5).
++You can also add dracut modules on the command line
++by using the -a or --add option:
++----
++# dracut --add bootchart initramfs-bootchart.img
++----
++
++To see a list of available dracut modules, use the --list-modules option:
++----
++# dracut --list-modules
++----
++
++=== Omitting dracut Modules
++Sometimes you don't want a dracut module to be included for reasons of speed,
++size or functionality. To do this, either specify the omit_dracutmodules
++variable in the _dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_ configuration
++file (see *dracut.conf*(5)), or use the -o or --omit option
++on the command line:
++----
++# dracut -o "multipath lvm" no-multipath-lvm.img
++----
++
++=== Adding Kernel Modules
++If you need a special kernel module in the initramfs, which is not
++automatically picked up by dracut, you have the use the --add-drivers option
++on the command line or  the drivers vaiable in  the _/etc/dracut.conf_
++or _/etc/dracut.conf.d/myconf.conf_ configuration file (see *dracut.conf*(5)):
++----
++# dracut --add-drivers mymod initramfs-with-mymod.img
++----
++
++=== Boot parameters
++An initramfs generated without the "hostonly" mode, does not contain any system
++configuration files (except for some special exceptions), so the configuration
++has to be done on the kernel command line. With this flexibility, you can easily
++boot from a changed root partition, without the need to recompile the initramfs
++image. So, you could completly change your root partition (move it inside a md
++raid with encryption and LVM on top), as long as you specify the correct
++filesystem LABEL or UUID on the kernel command line for your root device, dracut
++will find it and boot from it.
++
++The kernel command line usually can be configured in _/boot/grub/grub.conf_, if
++grub is your bootloader and it also can be edited in the real boot process in
++the grub menu.
++
++The kernel command line can also be provided by the dhcp server with the
++root-path option. See <<NetworkBoot>>.
++
++For a full reference of all kernel command line parameters, see *dracut.cmdline*(5).
++
++To get a quick start for the suitable kernel command line on your system, use the
++__--print-cmdline__ option:
++----
++# dracut --print-cmdline
++ root=UUID=8b8b6f91-95c7-4da2-831b-171e12179081 rootflags=rw,relatime,discard,data=ordered rootfstype=ext4
++----
++
++==== Specifying the root Device
++This is the only option dracut really needs to boot from your root partition.
++Because your root partition can live in various environments, there are a lot of
++formats for the root= option. The most basic one is root=_++<path to device
++node>++_:
++----
++root=/dev/sda2
++----
++
++Because device node names can change, dependent on the drive ordering, you are
++encouraged to use the filesystem identifier (UUID) or filesystem label (LABEL)
++to specify your root partition:
++----
++root=UUID=19e9dda3-5a38-484d-a9b0-fa6b067d0331
++----
++
++or
++
++----
++root=LABEL=myrootpartitionlabel
++----
++
++To see all UUIDs or LABELs on your system, do:
++----
++# ls -l /dev/disk/by-uuid
++----
++
++or
++
++----
++# ls -l /dev/disk/by-label
++----
++
++If your root partition is on the network see <<NetworkBoot>>.
++
++==== Keyboard Settings
++If you have to input passwords for encrypted disk volumes, you might want to set
++the keyboard layout and specify a display font.
++
++A typical german kernel command would contain:
++----
++rd.vconsole.font=latarcyrheb-sun16 rd.vconsole.keymap=de-latin1-nodeadkeys rd.locale.LANG=de_DE.UTF-8
++----
++
++Setting these options can override the setting stored on your system, if you use
++a modern init system, like systemd.
++
++==== Blacklisting Kernel Modules
++Sometimes it is required to prevent the automatic kernel module loading of a
++specific kernel module. To do this, just add rd.blacklist=_++<kernel module
++name>++_, with _++<kernel module name>++_ not containing the _.ko_
++suffix, to the kernel command line. For example:
++----
++rd.driver.blacklist=mptsas rd.driver.blacklist=nouveau
++----
++
++The option can be specified multiple times on the kernel command line.
++
++==== Speeding up the Boot Process
++If you want to speed up the boot process, you can specify as much information
++for dracut on the kernel command as possible. For example, you can tell dracut,
++that you root partition is not on a LVM volume or not on a raid partition, or
++that it lives inside a specific crypto LUKS encrypted volume. By default, dracut
++searches everywhere. A typical dracut kernel command line for a plain primary or
++logical partition would contain:
++----
++rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0
++----
++
++This turns off every automatic assembly of LVM, MD raids, DM raids and crypto LUKS.
++
++Of course, you could also omit the dracut modules in the initramfs creation
++process, but then you would lose the posibility to turn it on on demand.
++
++
++[[Injecting]]
++=== Injecting custom Files
++To add your own files to the initramfs image, you have several possibilities.
++
++The --include option let you specify a source path and a target path. For example
++----
++# dracut --include cmdline-preset /etc/cmdline.d/mycmdline.conf initramfs-cmdline-pre.img
++----
++will create an initramfs image, where the file cmdline-preset will be copied
++inside the initramfs to _/etc/cmdline.d/mycmdline.conf_. --include can only be specified once.
++
++
++----
++# mkdir -p rd.live.overlay/etc/cmdline.d
++# mkdir -p rd.live.overlay/etc/conf.d
++# echo "ip=auto" >> rd.live.overlay/etc/cmdline.d/mycmdline.conf
++# echo export FOO=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
++# echo export BAR=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
++# tree rd.live.overlay/
++rd.live.overlay/
++`-- etc
++    |-- cmdline.d
++    |   `-- mycmdline.conf
++    `-- conf.d
++        `-- testvar.conf
++
++# dracut --include rd.live.overlay / initramfs-rd.live.overlay.img
++----
++
++This will put the contents of the rd.live.overlay directory into the root of the
++initramfs image.
++
++The --install option let you specify several files, which will get installed in
++the initramfs image at the same location, as they are present on initramfs
++creation time.
++
++
++----
++# dracut --install 'strace fsck.ext3 ssh' initramfs-dbg.img
++----
++
++This will create an initramfs with the strace, fsck.ext3 and ssh executables,
++together with the libraries needed to start those. The --install option can be
++specified multiple times.
++
++
++[[NetworkBoot]]
++=== Network Boot
++
++If your root partition is on a network drive, you have to have the network
++dracut modules installed to create a network aware initramfs image.
++
++On a Red Hat Enterprise Linux or Fedora system, this means, you have to install
++the _dracut-network_ rpm package:
++
++
++----
++# yum install dracut-network
++----
++
++The resulting initramfs image can be served by a boot manager residing on your
++local hard drive or it can be served by a PXE/TFTP server.
++
++How to setup your PXE/TFTP server can be found in the
++http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/[Red
++Hat Enterprise Linux Storage Administration Guide].
++
++If you specify ip=auto on the kernel command line, then dracut asks a dhcp
++server about the ip adress for the machine. The dhcp server can also serve an
++additional root-path, which will set the root device for dracut. With this
++mechanism, you have static configuration on your client machine and a
++centralized boot configuration on your TFTP/DHCP server. If you can't pass a
++kernel command line, then you can inject _/etc/cmdline.d/mycmdline.conf_, with a method described
++in <<Injecting>>.
++
++==== Reducing the Image Size
++
++To reduce the size of the initramfs, you should create it with by ommitting all
++dracut modules, which you know, you don't need to boot the machine.
++
++You can also specify the exact dracut and kernel modules to produce a very tiny
++initramfs image.
++
++For example for a NFS image, you would do:
++
++
++----
++# dracut -m "nfs network  base" initramfs-nfs-only.img
++----
++
++Then you would boot from this image with your target machine and reduce the size
++once more by creating it on the target machine with the --host-only option:
++
++
++----
++# dracut -m "nfs network base" --host-only initramfs-nfs-host-only.img
++----
++
++This will reduce the size of the initramfs image significantly.
++
++
++== Troubleshooting
++
++If the boot process does not succeed, you have several options to debug the
++situation. Some of the basic operations are covered here. For more information
++you should also visit:
++http://fedoraproject.org/wiki/How_to_debug_Dracut_problems
++
++
++[[identifying-your-problem-area]]
++=== Identifying your problem area
++. Remove ''rhgb'' and ''quiet'' from the kernel command line
++. Add ''rd.shell'' to the kernel command line. This will present a shell should
++dracut be unable to locate your root device
++. Add ''rd.shell rd.debug log_buf_len=1M'' to the kernel command line so that
++dracut shell commands are printed as they are executed
++. The file /run/initramfs/rdsosreport.txt is generated,
++which contains all the logs and the output of all significant tools, which are mentioned later.
++
++If you want to save that output, simply mount /boot by hand or insert an USB stick and mount that.
++Then you can store the output for later inspection.
++
++[[information-to-include-in-your-report]]
++=== Information to include in your report
++
++[[all-bug-reports]]
++==== All bug reports
++In all cases, the following should be mentioned and attached to your bug report:
++
++* The exact kernel command-line used. Typically from the bootloader
++configuration file (e.g. _/etc/grub.conf_) or from _/proc/cmdline_.
++* A copy of your disk partition information from _/etc/fstab_, which might be
++obtained booting an old working initramfs or a rescue medium.
++* Turn on dracut debugging (see _the 'debugging dracut' section_), and attach
++the file /run/initramfs/rdsosreport.txt.
++* If you use a dracut configuration file, please include _/etc/dracut.conf_ and
++all files in _/etc/dracut.conf.d/*.conf_
++
++[[network-root-device-related-problems]]
++==== Network root device related problems
++This section details information to include when experiencing problems on a
++system whose root device is located on a network attached volume (e.g. iSCSI,
++NFS or NBD). As well as the information from <<all-bug-reports>>, include the
++following information:
++
++
++* Please include the output of
+++
++----
++# /sbin/ifup <interfacename>
++# ip addr show
++----
++
++[[debugging-dracut]]
++=== Debugging dracut
++
++
++[[configure-a-serial-console]]
++==== Configure a serial console
++
++Successfully debugging dracut will require some form of console
++logging during the system boot.  This section documents configuring a
++serial console connection to record boot messages.
++
++. First, enable serial console output for both the kernel and the bootloader.
++. Open the file _/etc/grub.conf_ for editing. Below the line ''timeout=5'', add
++the following:
+++
++----
++serial --unit=0 --speed=9600
++terminal --timeout=5 serial console
++----
+++
++. Also in _/etc/grub.conf_, add the following boot arguemnts to the ''kernel''
++line:
+++
++----
++console=tty0 console=ttyS0,9600
++----
+++
++. When finished, the _/etc/grub.conf_ file should look similar to the example
++below.
+++
++----
++default=0
++timeout=5
++serial --unit=0 --speed=9600
++terminal --timeout=5 serial console
++title Fedora (2.6.29.5-191.fc11.x86_64)
++  root (hd0,0)
++  kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 console=ttyS0,9600
++  initrd /dracut-2.6.29.5-191.fc11.x86_64.img
++----
+++
++. More detailed information on how to configure the kernel for console output
++can be found at
++http://www.faqs.org/docs/Linux-HOWTO/Remote-Serial-Console-HOWTO.html#CONFIGURE-KERNEL.
++. Redirecting non-interactive output
+++
++--
++NOTE: You can redirect all non-interactive output to _/dev/kmsg_ and the kernel
++will put it out on the console when it reaches the kernel buffer by doing
++
++----
++# exec >/dev/kmsg 2>&1 </dev/console
++----
++--
++
++[[using-the-dracut-shell]]
++==== Using the dracut shell
++
++dracut offers a shell for interactive debugging in the event dracut fails to
++locate your root filesystem. To enable the shell:
++
++. Add the boot parameter ''rd.shell'' to your bootloader configuration file
++(e.g. _/etc/grub.conf_)
++. Remove the boot arguments ''rhgb'' and ''quiet''
+++
++A sample _/etc/grub.conf_ bootloader configuration file is listed below.
+++
++----
++default=0
++timeout=5
++serial --unit=0 --speed=9600
++terminal --timeout=5 serial console
++title Fedora (2.6.29.5-191.fc11.x86_64)
++  root (hd0,0)
++  kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 rd.shell
++  initrd /dracut-2.6.29.5-191.fc11.x86_64.img
++----
+++
++. If system boot fails, you will be dropped into a shell as seen in the example below.
+++
++----
++No root device found
++Dropping to debug shell.
++
++#
++----
+++
++. Use this shell prompt to gather the information requested above (see <<all-bug-reports>>).
++
++[[accessing-the-root-volume-from-the-dracut-shell]]
++==== Accessing the root volume from the dracut shell
++From the dracut debug shell, you can manually perform the task of locating and
++preparing your root volume for boot. The required steps will depend on how your
++root volume is configured. Common scenarios include:
++
++* A block device (e.g. _/dev/sda7_)
++* A LVM logical volume (e.g. _/dev/VolGroup00/LogVol00_)
++* An encrypted device (e.g. _/dev/mapper/luks-4d5972ea-901c-4584-bd75-1da802417d83_)
++* A network attached device (e.g. netroot=iscsi:@192.168.0.4::3260::iqn.2009-02.org.fedoraproject:for.all)
++
++The exact method for locating and preparing will vary. However, to continue with
++a successful boot, the objective is to locate your root volume and create a
++symlink _/dev/root_ which points to the file system. For example, the following
++example demonstrates accessing and booting a root volume that is an encrypted
++LVM Logical volume.
++
++. Inspect your partitions using parted
+++
++----
++# parted /dev/sda -s p
++Model: ATA HTS541060G9AT00 (scsi)
++Disk /dev/sda: 60.0GB
++Sector size (logical/physical): 512B/512B
++Partition Table: msdos
++Number  Start   End     Size    Type      File system  Flags
++1      32.3kB  10.8GB  107MB   primary   ext4         boot
++2      10.8GB  55.6GB  44.7GB  logical                lvm
++----
+++
++. You recall that your root volume was a LVM logical volume. Scan and activate
++any logical volumes.
+++
++----
++# lvm vgscan
++# lvm vgchange -ay
++----
+++
++. You should see any logical volumes now using the command blkid:
+++
++----
++# blkid
++/dev/sda1: UUID="3de247f3-5de4-4a44-afc5-1fe179750cf7" TYPE="ext4"
++/dev/sda2: UUID="Ek4dQw-cOtq-5MJu-OGRF-xz5k-O2l8-wdDj0I" TYPE="LVM2_member"
++/dev/mapper/linux-root: UUID="def0269e-424b-4752-acf3-1077bf96ad2c" TYPE="crypto_LUKS"
++/dev/mapper/linux-home: UUID="c69127c1-f153-4ea2-b58e-4cbfa9257c5e" TYPE="ext3"
++/dev/mapper/linux-swap: UUID="47b4d329-975c-4c08-b218-f9c9bf3635f1" TYPE="swap"
++----
+++
++. From the output above, you recall that your root volume exists on an encrypted
++block device. Following the guidance disk encryption guidance from the
++Installation Guide, you unlock your encrypted root volume.
+++
++----
++# UUID=$(cryptsetup luksUUID /dev/mapper/linux-root)
++# cryptsetup luksOpen /dev/mapper/linux-root luks-$UUID
++Enter passphrase for /dev/mapper/linux-root:
++Key slot 0 unlocked.
++----
+++
++. Next, make a symbolic link to the unlocked root volume
+++
++----
++# ln -s /dev/mapper/luks-$UUID /dev/root
++----
+++
++. With the root volume available, you may continue booting the system by exiting
++the dracut shell
+++
++----
++# exit
++----
++
++[[additional-dracut-boot-parameters]]
++==== Additional dracut boot parameters
++For more debugging options, see *dracut.cmdline*(7).
++
++
++[[debugging-dracut-on-shutdown]]
++==== Debugging dracut on shutdown
++
++To debug the shutdown sequence on systemd systems, you can _rd.break_
++on _pre-shutdown_ or _shutdown_.
++
++To do this from an already booted system:
++----
++# mkdir -p /run/initramfs/etc/cmdline.d
++# echo "rd.break=pre-shutdown" > /run/initramfs/etc/cmdline.d/debug.conf
++# touch /run/initramfs/.need_shutdown
++----
++
++This will give you a dracut shell after the system pivot'ed back in the initramfs.
++
diff --git a/SOURCES/0026-lvm-fix-thin-recognition.patch b/SOURCES/0026-lvm-fix-thin-recognition.patch
new file mode 100644
index 0000000..ac7d2f0
--- /dev/null
+++ b/SOURCES/0026-lvm-fix-thin-recognition.patch
@@ -0,0 +1,37 @@
+From 51ebae23d21bc1b030e98558ee46257e4f99297d Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 16 Oct 2013 11:30:08 +0200
+Subject: [PATCH] lvm: fix thin recognition
+
+The global var setting was happening in a pipe and did not have an
+effect.
+
+Use <<<$() instead.
+
+< <() cannot be used, because dracut is called in chroot's environments,
+where /dev/fd does not point to /proc/self/fd, but bash wants
+/dev/fd/<num> for this construct.
+---
+ modules.d/90lvm/module-setup.sh | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/modules.d/90lvm/module-setup.sh b/modules.d/90lvm/module-setup.sh
+index 514addc..50d9b98 100755
+--- a/modules.d/90lvm/module-setup.sh
++++ b/modules.d/90lvm/module-setup.sh
+@@ -53,12 +53,13 @@ install() {
+     inst lvm
+ 
+     if [[ $hostonly ]]; then
+-        get_host_lvs | while read line; do
++        while read line; do
++            [[ -n "$line" ]] || continue
+             printf "%s" " rd.lvm.lv=$line"
+             if ! [[ $_needthin ]]; then
+                 [[ "$(lvs --noheadings -o segtype ${line%%/*} 2>/dev/null)" == *thin* ]] && _needthin=1
+             fi
+-        done >> "${initdir}/etc/cmdline.d/90lvm.conf"
++        done <<<$(get_host_lvs) >> "${initdir}/etc/cmdline.d/90lvm.conf"
+         echo >> "${initdir}/etc/cmdline.d/90lvm.conf"
+     else
+         _needthin=1
diff --git a/SOURCES/0027-dracut-functions.sh-check_block_and_slaves-skip-LVM-.patch b/SOURCES/0027-dracut-functions.sh-check_block_and_slaves-skip-LVM-.patch
new file mode 100644
index 0000000..2ed0659
--- /dev/null
+++ b/SOURCES/0027-dracut-functions.sh-check_block_and_slaves-skip-LVM-.patch
@@ -0,0 +1,50 @@
+From 1b512344ee34e488a4995534ab96f30362725296 Mon Sep 17 00:00:00 2001
+From: Marian Csontos <mcsontos@redhat.com>
+Date: Fri, 18 Oct 2013 14:40:40 +0200
+Subject: [PATCH] dracut-functions.sh:check_block_and_slaves*() skip LVM
+ internal devs
+
+Not every device in /dev/mapper should be examined.
+If it is an LVM device, touch only devices which have /dev/VG/LV symlink.
+---
+ dracut-functions.sh | 16 ++++++++++++++--
+ 1 file changed, 14 insertions(+), 2 deletions(-)
+
+diff --git a/dracut-functions.sh b/dracut-functions.sh
+index 45e0911..2e6e845 100755
+--- a/dracut-functions.sh
++++ b/dracut-functions.sh
+@@ -579,7 +579,7 @@ host_fs_all()
+ check_block_and_slaves() {
+     local _x
+     [[ -b /dev/block/$2 ]] || return 1 # Not a block device? So sorry.
+-    "$1" $2 && return
++    if ! lvm_internal_dev $2; then "$1" $2 && return; fi
+     check_vol_slaves "$@" && return 0
+     if [[ -f /sys/dev/block/$2/../dev ]]; then
+         check_block_and_slaves $1 $(<"/sys/dev/block/$2/../dev") && return 0
+@@ -595,7 +595,7 @@ check_block_and_slaves() {
+ check_block_and_slaves_all() {
+     local _x _ret=1
+     [[ -b /dev/block/$2 ]] || return 1 # Not a block device? So sorry.
+-    if "$1" $2; then
++    if ! lvm_internal_dev $2 && "$1" $2; then
+         _ret=0
+     fi
+     check_vol_slaves "$@" && return 0
+@@ -1672,3 +1672,15 @@ get_ucode_file ()
+         printf "%02x-%02x-%02x" ${family} ${model} ${stepping}
+     fi
+ }
++
++# Not every device in /dev/mapper should be examined.
++# If it is an LVM device, touch only devices which have /dev/VG/LV symlink.
++lvm_internal_dev() {
++    local dev_dm_dir=/sys/dev/block/$1/dm
++    [[ ! -f $dev_dm_dir/uuid || $(<$dev_dm_dir/uuid) != LVM-* ]] && return 1 # Not an LVM device
++    local DM_VG_NAME DM_LV_NAME DM_LV_LAYER
++    eval $(dmsetup splitname --nameprefixes --noheadings --rows "$(<$dev_dm_dir/name)" 2>/dev/null)
++    [[ ${DM_VG_NAME} ]] && [[ ${DM_LV_NAME} ]] || return 0 # Better skip this!
++    [[ ${DM_LV_LAYER} ]] || [[ ! -L /dev/${DM_VG_NAME}/${DM_LV_NAME} ]]
++}
++
diff --git a/SOURCES/0028-Add-lzo-lz4-compression-and-read-INITRD_COMPRESS.patch b/SOURCES/0028-Add-lzo-lz4-compression-and-read-INITRD_COMPRESS.patch
new file mode 100644
index 0000000..186c05e
--- /dev/null
+++ b/SOURCES/0028-Add-lzo-lz4-compression-and-read-INITRD_COMPRESS.patch
@@ -0,0 +1,105 @@
+From 4d52f2493b600324638b6bc0e6ecfb3fb554e547 Mon Sep 17 00:00:00 2001
+From: P J P <ppandit@redhat.com>
+Date: Fri, 11 Oct 2013 19:26:51 +0530
+Subject: [PATCH] Add lzo, lz4 compression and read INITRD_COMPRESS
+
+This patch adds support for lzop(1) & lz4(1) compression
+algorithms to compress iniramfs image file. Both are supported
+by the Linux kernel.
+
+Linux kernel exports user's choice of initramfs compression
+algorithm as a shell environment variable: INITRD_COMPRESS.
+This patch adds support to read this variable and duly compress
+the initramfs image file.
+
+Environment variable INITRD_COMPRESS has less precedence than the
+command line options --gzip, etc. Ie. command line options could
+override the compression algorithm defined by $INITRD_COMPRESS.
+
+Signed-off-by: P J P <ppandit@redhat.com>
+
+[Edited-by: Harald Hoyer: add documentation about lzo and lz4]
+---
+ dracut.8.asc | 16 ++++++++++++++++
+ dracut.sh    | 13 +++++++++++++
+ 2 files changed, 29 insertions(+)
+
+diff --git a/dracut.8.asc b/dracut.8.asc
+index 584514c..2ea6744 100644
+--- a/dracut.8.asc
++++ b/dracut.8.asc
+@@ -365,6 +365,22 @@ Make sure your kernel has xz decompression support compiled in, otherwise you
+ will not be able to boot. Equivalent to "lzma --compress=xz --check=crc32 --lzma2=dict=1MiB"
+ ====
+ 
++**--lzo**::
++    Compress the generated initramfs using lzop.
++[WARNING]
++====
++Make sure your kernel has lzo decompression support compiled in, otherwise you
++will not be able to boot.
++====
++
++**--lz4**::
++    Compress the generated initramfs using lz4.
++[WARNING]
++====
++Make sure your kernel has lz4 decompression support compiled in, otherwise you
++will not be able to boot.
++====
++
+ **--compress** _<compressor>_::
+     Compress the generated initramfs using the passed compression program. If
+     you pass it just the name of a compression program, it will call that
+diff --git a/dracut.sh b/dracut.sh
+index d9533dd..173a259 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -165,6 +165,12 @@ Creates initial ramdisk images for preloading modules
+   --xz                  Compress the generated initramfs using xz.
+                          Make sure that your kernel has xz support compiled
+                          in, otherwise you will not be able to boot.
++  --lzo                  Compress the generated initramfs using lzop.
++                         Make sure that your kernel has lzo support compiled
++                         in, otherwise you will not be able to boot.
++  --lz4                  Compress the generated initramfs using lz4.
++                         Make sure that your kernel has lz4 support compiled
++                         in, otherwise you will not be able to boot.
+   --compress [COMPRESSION] Compress the generated initramfs with the
+                          passed compression program.  Make sure your kernel
+                          knows how to decompress the generated initramfs,
+@@ -342,6 +348,8 @@ TEMP=$(unset POSIXLY_CORRECT; getopt \
+     --long bzip2 \
+     --long lzma \
+     --long xz \
++    --long lzo \
++    --long lz4 \
+     --long no-compress \
+     --long gzip \
+     --long list-modules \
+@@ -430,6 +438,8 @@ while :; do
+         --bzip2)       compress_l="bzip2";;
+         --lzma)        compress_l="lzma";;
+         --xz)          compress_l="xz";;
++        --lzo)         compress_l="lzo";;
++        --lz4)         compress_l="lz4";;
+         --no-compress) _no_compress_l="cat";;
+         --gzip)        compress_l="gzip";;
+         --list-modules) do_list="yes";;
+@@ -673,6 +683,7 @@ stdloglvl=$((stdloglvl + verbosity_mod_l))
+ [[ $fw_dir ]] || fw_dir="/lib/firmware/updates /lib/firmware"
+ [[ $tmpdir_l ]] && tmpdir="$tmpdir_l"
+ [[ $tmpdir ]] || tmpdir=/var/tmp
++[[ $INITRD_COMPRESS ]] && compress=$INITRD_COMPRESS
+ [[ $compress_l ]] && compress=$compress_l
+ [[ $show_modules_l ]] && show_modules=$show_modules_l
+ [[ $nofscks_l ]] && nofscks="yes"
+@@ -689,6 +700,8 @@ case $compress in
+     lzma)  compress="lzma -9";;
+     xz)    compress="xz --check=crc32 --lzma2=dict=1MiB";;
+     gzip)  compress="gzip -9"; command -v pigz > /dev/null 2>&1 && compress="pigz -9";;
++    lzo)   compress="lzop -9";;
++    lz4)   compress="lz4 -9";;
+ esac
+ if [[ $_no_compress_l = "cat" ]]; then
+     compress="cat"
diff --git a/SOURCES/0029-git2spec.pl-remove-.git-date-from-release-string.patch b/SOURCES/0029-git2spec.pl-remove-.git-date-from-release-string.patch
new file mode 100644
index 0000000..64c11e3
--- /dev/null
+++ b/SOURCES/0029-git2spec.pl-remove-.git-date-from-release-string.patch
@@ -0,0 +1,23 @@
+From 239a2e91fb97a5ac3c4efdcfc31810f13b26d051 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 18 Oct 2013 15:34:44 +0200
+Subject: [PATCH] git2spec.pl: remove ".git$(date)" from release string
+
+---
+ git2spec.pl | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/git2spec.pl b/git2spec.pl
+index 0d8adb4..b844295 100755
+--- a/git2spec.pl
++++ b/git2spec.pl
+@@ -20,8 +20,7 @@ chomp($tag);
+ my @patches=&create_patches($tag, $pdir);
+ my $num=$#patches + 2;
+ $tag=~s/[^0-9]+?([0-9]+)/$1/;
+-my $release="$num.git$datestr";
+-$release="1" if $num == 1;
++my $release="$num";
+ 
+ while(<>) {
+     if (/^Version:/) {
diff --git a/SOURCES/0030-kernel-modules-ARM-add-mmc_block-usb_storage-to-stat.patch b/SOURCES/0030-kernel-modules-ARM-add-mmc_block-usb_storage-to-stat.patch
new file mode 100644
index 0000000..b660838
--- /dev/null
+++ b/SOURCES/0030-kernel-modules-ARM-add-mmc_block-usb_storage-to-stat.patch
@@ -0,0 +1,23 @@
+From f88fc58d7c048fe4c2cf40018e365405b4dc0935 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Fri, 18 Oct 2013 14:56:51 +0200
+Subject: [PATCH] kernel-modules(ARM): add mmc_block usb_storage to statis list
+ of kernel mods
+
+---
+ modules.d/90kernel-modules/module-setup.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/modules.d/90kernel-modules/module-setup.sh b/modules.d/90kernel-modules/module-setup.sh
+index e7e2ca0..366235c 100755
+--- a/modules.d/90kernel-modules/module-setup.sh
++++ b/modules.d/90kernel-modules/module-setup.sh
+@@ -48,7 +48,7 @@ installkernel() {
+             # arm specific modules
+             hostonly='' instmods sdhci_esdhc_imx mmci sdhci_tegra mvsdio omap omapdrm \
+                 omap_hsmmc panel-tfp410 sdhci_dove ahci_platform pata_imx sata_mv \
+-                ehci-tegra
++                ehci-tegra mmc_block usb_storage
+         fi
+ 
+         # install virtual machine support
diff --git a/SOURCES/0031-lvm-always-install-thin-utils-for-lvm.patch b/SOURCES/0031-lvm-always-install-thin-utils-for-lvm.patch
new file mode 100644
index 0000000..008c3f6
--- /dev/null
+++ b/SOURCES/0031-lvm-always-install-thin-utils-for-lvm.patch
@@ -0,0 +1,75 @@
+From f9fc4330da71dfb43c64fb424a5fef2909e4f4c3 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 21 Oct 2013 09:09:26 +0200
+Subject: [PATCH] lvm: always install thin utils for lvm
+
+---
+ modules.d/90lvm/module-setup.sh | 34 ++++++++--------------------------
+ 1 file changed, 8 insertions(+), 26 deletions(-)
+
+diff --git a/modules.d/90lvm/module-setup.sh b/modules.d/90lvm/module-setup.sh
+index 50d9b98..f1c19a2 100755
+--- a/modules.d/90lvm/module-setup.sh
++++ b/modules.d/90lvm/module-setup.sh
+@@ -22,7 +22,8 @@ depends() {
+     return 0
+ }
+ 
+-get_host_lvs() {
++# called by dracut
++cmdline() {
+     local _activated
+     declare -A _activated
+ 
+@@ -35,35 +36,20 @@ get_host_lvs() {
+         eval $(dmsetup splitname --nameprefixes --noheadings --rows "$dev" 2>/dev/null)
+         [[ ${DM_VG_NAME} ]] && [[ ${DM_LV_NAME} ]] || return 1
+         if ! [[ ${_activated[${DM_VG_NAME}/${DM_LV_NAME}]} ]]; then
+-            printf "%s\n" "${DM_VG_NAME}/${DM_LV_NAME} "
++            printf " rd.lvm.lv=%s\n" "${DM_VG_NAME}/${DM_LV_NAME} "
+             _activated["${DM_VG_NAME}/${DM_LV_NAME}"]=1
+         fi
+     done
+ }
+ 
+-cmdline() {
+-    get_host_lvs | while read line; do
+-        printf " rd.lvm.lv=$line"
+-    done
+-}
+-
++# called by dracut
+ install() {
+-    local _i _needthin
++    local _i
+ 
+     inst lvm
+ 
+-    if [[ $hostonly ]]; then
+-        while read line; do
+-            [[ -n "$line" ]] || continue
+-            printf "%s" " rd.lvm.lv=$line"
+-            if ! [[ $_needthin ]]; then
+-                [[ "$(lvs --noheadings -o segtype ${line%%/*} 2>/dev/null)" == *thin* ]] && _needthin=1
+-            fi
+-        done <<<$(get_host_lvs) >> "${initdir}/etc/cmdline.d/90lvm.conf"
+-        echo >> "${initdir}/etc/cmdline.d/90lvm.conf"
+-    else
+-        _needthin=1
+-    fi
++    cmdline >> "${initdir}/etc/cmdline.d/90lvm.conf"
++    echo >> "${initdir}/etc/cmdline.d/90lvm.conf"
+ 
+     inst_rules "$moddir/64-lvm.rules"
+ 
+@@ -99,9 +85,5 @@ install() {
+ 
+     inst_libdir_file "libdevmapper-event-lvm*.so"
+ 
+-    if [[ $_needthin ]]; then
+-        inst_multiple -o thin_dump thin_restore thin_check thin_repair
+-    fi
+-
++    inst_multiple -o thin_dump thin_restore thin_check thin_repair
+ }
+-
diff --git a/SOURCES/0032-dracut.spec-move-sbin-dracut-to-usr-sbin-dracut.patch b/SOURCES/0032-dracut.spec-move-sbin-dracut-to-usr-sbin-dracut.patch
new file mode 100644
index 0000000..8a6b511
--- /dev/null
+++ b/SOURCES/0032-dracut.spec-move-sbin-dracut-to-usr-sbin-dracut.patch
@@ -0,0 +1,33 @@
+From acbc09a360a1e1a8197db1fbb93b83f9823a1de1 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 21 Oct 2013 09:43:04 +0200
+Subject: [PATCH] dracut.spec: move /sbin/dracut to /usr/sbin/dracut
+
+---
+ dracut.spec | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/dracut.spec b/dracut.spec
+index 8dfc753..596d728 100644
+--- a/dracut.spec
++++ b/dracut.spec
+@@ -276,8 +276,8 @@ echo 'dracut_rescue_image="yes"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/
+ %endif
+ 
+ # create compat symlink
+-mkdir -p $RPM_BUILD_ROOT/sbin
+-ln -s /usr/bin/dracut $RPM_BUILD_ROOT/sbin/dracut
++mkdir -p $RPM_BUILD_ROOT%{_sbindir}
++ln -sr $RPM_BUILD_ROOT%{_bindir}/dracut $RPM_BUILD_ROOT%{_sbindir}/dracut
+ 
+ %clean
+ rm -rf -- $RPM_BUILD_ROOT
+@@ -287,7 +287,7 @@ rm -rf -- $RPM_BUILD_ROOT
+ %doc README HACKING TODO COPYING AUTHORS NEWS dracut.html dracut.png dracut.svg
+ %{_bindir}/dracut
+ # compat symlink
+-/sbin/dracut
++%{_sbindir}/dracut
+ %{_datadir}/bash-completion/completions/dracut
+ %{_datadir}/bash-completion/completions/lsinitrd
+ %if 0%{?fedora} > 12 || 0%{?rhel} >= 6 || 0%{?suse_version} > 9999
diff --git a/SOURCES/0033-usrmount-module-setup.sh-fixed-typo.patch b/SOURCES/0033-usrmount-module-setup.sh-fixed-typo.patch
new file mode 100644
index 0000000..23adaa4
--- /dev/null
+++ b/SOURCES/0033-usrmount-module-setup.sh-fixed-typo.patch
@@ -0,0 +1,22 @@
+From 68801ee740e40257bdb4782657199428d29196d0 Mon Sep 17 00:00:00 2001
+From: Alexander Tsoy <alexander@tsoy.me>
+Date: Fri, 25 Oct 2013 17:06:44 +0200
+Subject: [PATCH] usrmount/module-setup.sh: fixed typo
+
+---
+ modules.d/98usrmount/module-setup.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/modules.d/98usrmount/module-setup.sh b/modules.d/98usrmount/module-setup.sh
+index a668069..1dde937 100755
+--- a/modules.d/98usrmount/module-setup.sh
++++ b/modules.d/98usrmount/module-setup.sh
+@@ -6,7 +6,7 @@ check() {
+     local _init
+     [[ $mount_needs ]] && return 1
+     _init=$(readlink -f /sbin/init)
+-    [[ "$init" == "${init##/usr}" ]] && return 255
++    [[ "$_init" == "${_init##/usr}" ]] && return 255
+     return 0
+ }
+ 
diff --git a/SOURCES/0034-Handle-crypto-modules-with-and-without-modaliases.patch b/SOURCES/0034-Handle-crypto-modules-with-and-without-modaliases.patch
new file mode 100644
index 0000000..c2961d1
--- /dev/null
+++ b/SOURCES/0034-Handle-crypto-modules-with-and-without-modaliases.patch
@@ -0,0 +1,85 @@
+From 662592c46a4561d517e2fa45e917e17824b658c9 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 30 Oct 2013 12:22:52 +0100
+Subject: [PATCH] Handle crypto modules with and without modaliases
+
+If new kernels have modules split out, handle the case, where modules
+have to modalias and just install them.
+
+Also add the crypto drivers and names to host_modalias.
+---
+ dracut-functions.sh      | 14 ++++++++++----
+ dracut.sh                |  5 +++++
+ modules.d/01fips/fips.sh |  1 -
+ 3 files changed, 15 insertions(+), 5 deletions(-)
+
+diff --git a/dracut-functions.sh b/dracut-functions.sh
+index 2e6e845..38095ba 100755
+--- a/dracut-functions.sh
++++ b/dracut-functions.sh
+@@ -1480,7 +1480,7 @@ dracut_kernel_post() {
+ 
+ module_is_host_only() {
+     local _mod=$1
+-    local _modenc a i
++    local _modenc a i _k _s _v _aliases
+     _mod=${_mod##*/}
+     _mod=${_mod%.ko}
+     _modenc=${_mod//-/_}
+@@ -1497,19 +1497,25 @@ module_is_host_only() {
+         # this covers the case, where a new module is introduced
+         # or a module was renamed
+         # or a module changed from builtin to a module
++
+         if [[ -d /lib/modules/$kernel_current ]]; then
+             # if the modinfo can be parsed, but the module
+             # is not loaded, then we can safely return 1
+             modinfo -F filename "$_mod" &>/dev/null && return 1
+         fi
+ 
+-        # Finally check all modalias, if we install for a kernel
+-        # different from the current one
+-        for a in $(modinfo -k $kernel -F alias $_mod 2>/dev/null); do
++        _aliases=$(modinfo -k $kernel -F alias $_mod 2>/dev/null)
++
++        # if the module has no aliases, install it
++        [[ $_aliases ]] || return 0
++
++        # finally check all modalias
++        for a in $_aliases; do
+             for i in "${!host_modalias[@]}"; do
+                 [[ $i == $a ]]  && return 0
+             done
+         done
++
+     fi
+ 
+     return 1
+diff --git a/dracut.sh b/dracut.sh
+index 173a259..c6a388a 100755
+--- a/dracut.sh
++++ b/dracut.sh
+@@ -968,6 +968,11 @@ if [[ $hostonly ]]; then
+ 
+     rm -f -- "$initdir/.modalias"
+ 
++    while read _k _s _v; do
++        [ "$_k" != "name" -a "$_k" != "driver" ] && continue
++        host_modalias["$_v"]=1
++    done </proc/crypto
++
+     # check /proc/modules
+     declare -A host_modules
+     while read m rest; do
+diff --git a/modules.d/01fips/fips.sh b/modules.d/01fips/fips.sh
+index f0a4c5c..98dd1c2 100755
+--- a/modules.d/01fips/fips.sh
++++ b/modules.d/01fips/fips.sh
+@@ -96,7 +96,6 @@ do_fips()
+                 _found=0
+                 while read _k _s _v; do
+                     [ "$_k" != "name" -a "$_k" != "driver" ] && continue
+-                    [ "$_k" = "driver" ] && _v=$(str_replace "$_v" "_" "-")
+                     [ "$_v" != "$_module" ] && continue
+                     _found=1
+                     break
diff --git a/SOURCES/0035-fips-include-crct10dif_generic.patch b/SOURCES/0035-fips-include-crct10dif_generic.patch
new file mode 100644
index 0000000..ae4163a
--- /dev/null
+++ b/SOURCES/0035-fips-include-crct10dif_generic.patch
@@ -0,0 +1,23 @@
+From 5fe3473880475af8542de6568111d27db77588d0 Mon Sep 17 00:00:00 2001
+From: Kyle McMartin <kmcmarti@redhat.com>
+Date: Wed, 30 Oct 2013 12:35:27 +0100
+Subject: [PATCH] fips: include crct10dif_generic
+
+Resolves: rhbz#1024455
+---
+ modules.d/01fips/module-setup.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/modules.d/01fips/module-setup.sh b/modules.d/01fips/module-setup.sh
+index d08e3f7..1ab4999 100755
+--- a/modules.d/01fips/module-setup.sh
++++ b/modules.d/01fips/module-setup.sh
+@@ -13,7 +13,7 @@ depends() {
+ installkernel() {
+     local _fipsmodules _mod
+     _fipsmodules="aead aes_generic aes-x86_64 ansi_cprng arc4 blowfish camellia cast6 cbc ccm "
+-    _fipsmodules+="chainiv crc32c cryptomgr crypto_null ctr cts deflate des des3_ede dm-crypt dm-mod "
++    _fipsmodules+="chainiv crc32c crct10dif_generic cryptomgr crypto_null ctr cts deflate des des3_ede dm-crypt dm-mod "
+     _fipsmodules+="ecb eseqiv fcrypt gcm ghash_generic hmac khazad lzo md4 md5 michael_mic rmd128 "
+     _fipsmodules+="rmd160 rmd256 rmd320 rot13 salsa20 seed seqiv serpent sha1 sha224 sha256 sha256_generic "
+     _fipsmodules+="sha384 sha512 sha512_generic tcrypt tea tnepres twofish wp256 wp384 wp512 xeta xtea xts zlib"
diff --git a/SOURCES/0036-resume-fix-swap-detection-in-hostonly.patch b/SOURCES/0036-resume-fix-swap-detection-in-hostonly.patch
new file mode 100644
index 0000000..bcd5db6
--- /dev/null
+++ b/SOURCES/0036-resume-fix-swap-detection-in-hostonly.patch
@@ -0,0 +1,28 @@
+From 3ad9febfafc57aff4a705cc4c5f184fed2dc3c4c Mon Sep 17 00:00:00 2001
+From: Alexander Tsoy <alexander@tsoy.me>
+Date: Wed, 9 Oct 2013 06:39:46 +0400
+Subject: [PATCH] resume: fix swap detection in hostonly
+
+Check for other possible fs types. This fixes swap detection when using
+TuxOnIce kernel.
+
+Note that parse-resume.sh generate udev rules with support for
+ID_FS_TYPE=suspend, but we do not include it here, because it is
+libvolume_id thing and host_fs_types is populated using blkid.
+---
+ modules.d/95resume/module-setup.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/modules.d/95resume/module-setup.sh b/modules.d/95resume/module-setup.sh
+index 518ebf0..a1ddb46 100755
+--- a/modules.d/95resume/module-setup.sh
++++ b/modules.d/95resume/module-setup.sh
+@@ -6,7 +6,7 @@ check() {
+     # No point trying to support resume, if no swap partition exist
+     [[ $hostonly ]] || [[ $mount_needs ]] && {
+         for fs in "${host_fs_types[@]}"; do
+-            [[ $fs = swap ]] && return 0
++            [[ $fs =~ ^(swap|swsuspend|swsupend)$ ]] && return 0
+         done
+         return 255
+     }
diff --git a/SOURCES/0037-resume-remove-resume-genrules.sh.patch b/SOURCES/0037-resume-remove-resume-genrules.sh.patch
new file mode 100644
index 0000000..c2fcd8b
--- /dev/null
+++ b/SOURCES/0037-resume-remove-resume-genrules.sh.patch
@@ -0,0 +1,88 @@
+From 40c2e2db5c8b08e064a03235ec843ff39a2addc7 Mon Sep 17 00:00:00 2001
+From: Alexander Tsoy <alexander@tsoy.me>
+Date: Wed, 9 Oct 2013 07:02:56 +0400
+Subject: [PATCH] resume: remove resume-genrules.sh
+
+parse-resume.sh already contains all the code from resume-genrules.sh.
+Also parse-resume.sh is executed before resume-genrules.sh, so there is
+no point to keep the latter.
+
+This fixes the following error messages:
+dracut-initqueue: ln: failed to create symbolic link '/dev/resume': File exists
+dracut-initqueue: rm: cannot remove '/lib/dracut/hooks/initqueue/settled/resume.sh': No such file or directory
+dracut-initqueue: rm: cannot remove '/lib/dracut/hooks/initqueue/timeout/resume.sh': No such file or directory
+---
+ modules.d/95resume/module-setup.sh    |  1 -
+ modules.d/95resume/resume-genrules.sh | 51 -----------------------------------
+ 2 files changed, 52 deletions(-)
+ delete mode 100755 modules.d/95resume/resume-genrules.sh
+
+diff --git a/modules.d/95resume/module-setup.sh b/modules.d/95resume/module-setup.sh
+index a1ddb46..c4e9363 100755
+--- a/modules.d/95resume/module-setup.sh
++++ b/modules.d/95resume/module-setup.sh
+@@ -30,7 +30,6 @@ install() {
+         inst_hook cmdline 10 "$moddir/parse-resume.sh"
+     else
+         inst_script "$moddir/parse-resume.sh" /lib/dracut/parse-resume.sh
+-        inst_hook pre-udev 30 "$moddir/resume-genrules.sh"
+     fi
+ 
+     inst_script  "$moddir/resume.sh" /lib/dracut/resume.sh
+diff --git a/modules.d/95resume/resume-genrules.sh b/modules.d/95resume/resume-genrules.sh
+deleted file mode 100755
+index c542c71..0000000
+--- a/modules.d/95resume/resume-genrules.sh
++++ /dev/null
+@@ -1,51 +0,0 @@
+-#!/bin/sh
+-# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
+-# ex: ts=8 sw=4 sts=4 et filetype=sh
+-
+-case "$splash" in
+-    quiet )
+-        a_splash="-P splash=y"
+-    ;;
+-    * )
+-        a_splash="-P splash=n"
+-    ;;
+-esac
+-
+-if [ -n "$resume" ]; then
+-    {
+-        printf "KERNEL==\"%s\", ACTION==\"add|change\", SYMLINK+=\"/dev/resume\"\n" \
+-            ${resume#/dev/};
+-        printf "SYMLINK==\"%s\", ACTION==\"add|change\", SYMLINK+=\"/dev/resume\"\n" \
+-            ${resume#/dev/};
+-    } >> /etc/udev/rules.d/99-resume-link.rules
+-
+-    {
+-        if [ -x /usr/sbin/resume ]; then
+-            printf "KERNEL==\"%s\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\", RUN+=\"/sbin/initqueue --finished --unique --name 00resume /usr/sbin/resume %s \'%s\'\"\n" \
+-                ${resume#/dev/} "$a_splash" "$resume";
+-            printf "SYMLINK==\"%s\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\", RUN+=\"/sbin/initqueue --finished --unique --name 00resume /usr/sbin/resume %s \'%s\'\"\n" \
+-                ${resume#/dev/} "$a_splash" "$resume";
+-        fi
+-        printf "KERNEL==\"%s\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\", RUN+=\"/sbin/initqueue --finished --unique --name 00resume echo %%M:%%m > /sys/power/resume\"\n" \
+-            ${resume#/dev/};
+-        printf "SYMLINK==\"%s\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\", RUN+=\"/sbin/initqueue --finished --unique --name 00resume echo %%M:%%m  > /sys/power/resume\"\n" \
+-            ${resume#/dev/};
+-    } >> /etc/udev/rules.d/99-resume.rules
+-
+-    printf '[ -e "%s" ] && { ln -s "%s" /dev/resume; rm "$job" "%s/initqueue/timeout/resume.sh"; }\n' \
+-        "$resume" "$resume" "$hookdir" >> $hookdir/initqueue/settled/resume.sh
+-
+-    printf 'warn "Cancelling resume operation. Device not found."; cancel_wait_for_dev /dev/resume; rm "$job" "%s/initqueue/settled/resume.sh";' \
+-        "$hookdir" >> $hookdir/initqueue/timeout/resume.sh
+-
+-    wait_for_dev "/dev/resume"
+-
+-elif ! getarg noresume; then
+-    {
+-        if [ -x /usr/sbin/resume ]; then
+-            printf "SUBSYSTEM==\"block\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\", RUN+=\"/sbin/initqueue --finished --unique --name 00resume /usr/sbin/resume %s \$tempnode\"\n" "$a_splash"
+-        fi
+-        echo "SUBSYSTEM==\"block\", ACTION==\"add|change\", ENV{ID_FS_TYPE}==\"suspend|swsuspend|swsupend\"," \
+-            " RUN+=\"/sbin/initqueue --finished --unique --name 00resume echo %M:%m > /sys/power/resume\"";
+-    } >> /etc/udev/rules.d/99-resume.rules
+-fi
diff --git a/SOURCES/0038-iscsi-nbd-do-not-try-to-mount-the-whole-disk-if-root.patch b/SOURCES/0038-iscsi-nbd-do-not-try-to-mount-the-whole-disk-if-root.patch
new file mode 100644
index 0000000..d2bfb63
--- /dev/null
+++ b/SOURCES/0038-iscsi-nbd-do-not-try-to-mount-the-whole-disk-if-root.patch
@@ -0,0 +1,61 @@
+From 26a42e80bed28da0fdf34f7835b2b404ec25e7e6 Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Wed, 30 Oct 2013 17:36:54 +0100
+Subject: [PATCH] iscsi/nbd: do not try to mount the whole disk, if root= is
+ missing
+
+only mount the whole disk for root=dhcp
+---
+ modules.d/95iscsi/iscsiroot.sh | 11 ++---------
+ modules.d/95nbd/nbdroot.sh     |  2 +-
+ 2 files changed, 3 insertions(+), 10 deletions(-)
+
+diff --git a/modules.d/95iscsi/iscsiroot.sh b/modules.d/95iscsi/iscsiroot.sh
+index 5181f52..738fff4 100755
+--- a/modules.d/95iscsi/iscsiroot.sh
++++ b/modules.d/95iscsi/iscsiroot.sh
+@@ -40,14 +40,6 @@ modprobe crc32c 2>/dev/null
+ [ -e /sys/module/bnx2i ] && iscsiuio
+ 
+ if getargbool 0 rd.iscsi.firmware -d -y iscsi_firmware ; then
+-    if [ -z "$root" -o -n "${root%%block:*}" ]; then
+-        # if root is not specified try to mount the whole iSCSI LUN
+-        printf 'ENV{DEVTYPE}!="partition", SYMLINK=="disk/by-path/*-iscsi-*-*", SYMLINK+="root"\n' >> /etc/udev/rules.d/99-iscsi-root.rules
+-        udevadm control --reload
+-        write_fs_tab /dev/root
+-        wait_for_dev /dev/root
+-    fi
+-
+     for p in $(getargs rd.iscsi.param -d iscsi_param); do
+ 	iscsi_param="$iscsi_param --param $p"
+     done
+@@ -55,6 +47,7 @@ if getargbool 0 rd.iscsi.firmware -d -y iscsi_firmware ; then
+     iscsistart -b $iscsi_param
+     echo 'started' > "/tmp/iscsistarted-iscsi"
+     echo 'started' > "/tmp/iscsistarted-firmware"
++    need_shutdown
+     exit 0
+ fi
+ 
+@@ -137,7 +130,7 @@ handle_netroot()
+ 
+ # FIXME $iscsi_protocol??
+ 
+-    if [ -z "$root" -o -n "${root%%block:*}" ]; then
++    if [ "$root" = "dhcp" ]; then
+         # if root is not specified try to mount the whole iSCSI LUN
+         printf 'SYMLINK=="disk/by-path/*-iscsi-*-%s", SYMLINK+="root"\n' $iscsi_lun >> /etc/udev/rules.d/99-iscsi-root.rules
+         udevadm control --reload
+diff --git a/modules.d/95nbd/nbdroot.sh b/modules.d/95nbd/nbdroot.sh
+index 823da0e..2e9d917 100755
+--- a/modules.d/95nbd/nbdroot.sh
++++ b/modules.d/95nbd/nbdroot.sh
+@@ -97,7 +97,7 @@ done
+ 
+ # If we didn't get a root= on the command line, then we need to
+ # add the udev rules for mounting the nbd0 device
+-if [ -z "$root" -o -n "${root%%block:*}" -o "$root" = "block:/dev/root" ]; then
++if [ "$root" = "block:/dev/root" -o "$root" = "dhcp" ]; then
+     printf 'KERNEL=="nbd0", ENV{DEVTYPE}!="partition", ENV{ID_FS_TYPE}=="?*", SYMLINK+="root"\n' >> /etc/udev/rules.d/99-nbd-root.rules
+     udevadm control --reload
+     type write_fs_tab >/dev/null 2>&1 || . /lib/fs-lib.sh
diff --git a/SOURCES/0039-fips-also-install-etc-system-fips-in-the-initramfs.patch b/SOURCES/0039-fips-also-install-etc-system-fips-in-the-initramfs.patch
new file mode 100644
index 0000000..e6a977e
--- /dev/null
+++ b/SOURCES/0039-fips-also-install-etc-system-fips-in-the-initramfs.patch
@@ -0,0 +1,20 @@
+From 5dcfc56d59e732d7d60cf7f6448eae0dcbf1e28b Mon Sep 17 00:00:00 2001
+From: Harald Hoyer <harald@redhat.com>
+Date: Mon, 4 Nov 2013 17:29:15 +0100
+Subject: [PATCH] fips: also install /etc/system-fips in the initramfs
+
+---
+ modules.d/01fips/module-setup.sh | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/modules.d/01fips/module-setup.sh b/modules.d/01fips/module-setup.sh
+index 1ab4999..35cfdc5 100755
+--- a/modules.d/01fips/module-setup.sh
++++ b/modules.d/01fips/module-setup.sh
+@@ -41,5 +41,6 @@ install() {
+         libssl.so 'hmaccalc/sha512hmac.hmac' libssl.so.10
+ 
+     inst_multiple -o prelink
++    inst_simple /etc/system-fips
+ }
+ 
diff --git a/SPECS/dracut.spec b/SPECS/dracut.spec
new file mode 100644
index 0000000..f46a0d9
--- /dev/null
+++ b/SPECS/dracut.spec
@@ -0,0 +1,1548 @@
+%define dracutlibdir %{_prefix}/lib/dracut
+
+# Variables must be defined
+%define with_nbd                1
+
+# nbd in Fedora only
+%if 0%{?rhel} >= 6
+%define with_nbd 0
+%endif
+
+Name: dracut
+Version: 033
+Release: 40%{?dist}
+
+Summary: Initramfs generator using udev
+%if 0%{?fedora} || 0%{?rhel}
+Group: System Environment/Base
+%endif
+%if 0%{?suse_version}
+Group: System/Base
+%endif
+
+# The entire source code is GPLv2+
+# except install/* which is LGPLv2+
+License: GPLv2+ and LGPLv2+
+
+URL: https://dracut.wiki.kernel.org/
+
+# Source can be generated by
+# http://git.kernel.org/?p=boot/dracut/dracut.git;a=snapshot;h=%{version};sf=tgz
+Source0: http://www.kernel.org/pub/linux/utils/boot/dracut/dracut-%{version}.tar.bz2
+Patch1: 0001-dracut.sh-harden-host_modalias-reading.patch
+Patch2: 0002-ifup-do-not-dhcp-on-network-interface-of-secondary-s.patch
+Patch3: 0003-dracut.sh-also-search-uevent-s-for-MODALIAS.patch
+Patch4: 0004-dracut.sh-we-don-t-need-to-read-the-modalias-files.patch
+Patch5: 0005-Add-option-to-turn-on-off-prelinking.patch
+Patch6: 0006-add-etc-system-fips-for-dracut-fips-subpackage.patch
+Patch7: 0007-dracut-Generlize-microcode-early-cpio-usage.patch
+Patch8: 0008-dracut-Do-not-create-early_cpio-if-no-suitable-micro.patch
+Patch9: 0009-dracut-Implement-ACPI-table-overriding.patch
+Patch10: 0010-dracut.conf.5.asc-Add-ACPI-table-override-and-uncomp.patch
+Patch11: 0011-dracut-bash-completion.sh-add-prelink-noprelink.patch
+Patch12: 0012-dracut.sh-bail-out-early-if-destination-dir-is-not-w.patch
+Patch13: 0013-dracut-logger.sh-do-not-log-to-syslog-kmsg-journal-f.patch
+Patch14: 0014-lvm-mdraid-Fix-LVM-on-MD-activation.patch
+Patch15: 0015-bcache-optionally-install-the-tools-and-rules.patch
+Patch16: 0016-dracut-functions.sh-inst_rules-do-not-install-rules-.patch
+Patch17: 0017-mdraid-module-setup.sh-install-configs-from-etc-mdad.patch
+Patch18: 0018-mdraid-module-setup.sh-fixes-for-mdadm-3.2.6.patch
+Patch19: 0019-fcoe-add-FCoE-UEFI-boot-device-support.patch
+Patch20: 0020-rootfs-block-add-support-for-the-rootfallback-kernel.patch
+Patch21: 0021-btrfs-use-inst_hook-to-install-the-timeout-hook.patch
+Patch22: 0022-lvm-install-thin-utils-for-non-hostonly.patch
+Patch23: 0023-dracut.sh-do-not-bail-out-if-kernel-modules-dir-is-m.patch
+Patch24: 0024-dmsquash-live-add-dev-mapper-live-base.patch
+Patch25: 0025-Doc-cleanup-extend-and-split-and-reuse.patch
+Patch26: 0026-lvm-fix-thin-recognition.patch
+Patch27: 0027-dracut-functions.sh-check_block_and_slaves-skip-LVM-.patch
+Patch28: 0028-Add-lzo-lz4-compression-and-read-INITRD_COMPRESS.patch
+Patch29: 0029-git2spec.pl-remove-.git-date-from-release-string.patch
+Patch30: 0030-kernel-modules-ARM-add-mmc_block-usb_storage-to-stat.patch
+Patch31: 0031-lvm-always-install-thin-utils-for-lvm.patch
+Patch32: 0032-dracut.spec-move-sbin-dracut-to-usr-sbin-dracut.patch
+Patch33: 0033-usrmount-module-setup.sh-fixed-typo.patch
+Patch34: 0034-Handle-crypto-modules-with-and-without-modaliases.patch
+Patch35: 0035-fips-include-crct10dif_generic.patch
+Patch36: 0036-resume-fix-swap-detection-in-hostonly.patch
+Patch37: 0037-resume-remove-resume-genrules.sh.patch
+Patch38: 0038-iscsi-nbd-do-not-try-to-mount-the-whole-disk-if-root.patch
+Patch39: 0039-fips-also-install-etc-system-fips-in-the-initramfs.patch
+
+
+BuildRequires: bash git
+
+%if 0%{?fedora} || 0%{?rhel}
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: pkgconfig
+%endif
+%if 0%{?fedora}
+BuildRequires: bash-completion
+BuildRequires: pkgconfig
+%endif
+
+%if 0%{?suse_version}
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+%endif
+
+%if 0%{?fedora} || 0%{?rhel}
+BuildRequires: docbook-style-xsl docbook-dtds libxslt
+%endif
+
+%if 0%{?suse_version}
+-BuildRequires: docbook-xsl-stylesheets libxslt
+%endif
+
+BuildRequires: asciidoc
+
+%if 0%{?fedora} > 12 || 0%{?rhel}
+# no "provides", because dracut does not offer
+# all functionality of the obsoleted packages
+Obsoletes: mkinitrd <= 6.0.93
+Obsoletes: mkinitrd-devel <= 6.0.93
+Obsoletes: nash <= 6.0.93
+Obsoletes: libbdevid-python <= 6.0.93
+%endif
+
+%if 0%{?fedora} > 16 || 0%{?rhel} > 6
+BuildRequires: systemd-units
+%endif
+
+%if 0%{?suse_version} > 9999
+Obsoletes: mkinitrd < 2.6.1
+Provides: mkinitrd = 2.6.1
+%endif
+
+Obsoletes: dracut-kernel < 005
+Provides:  dracut-kernel = %{version}-%{release}
+
+Obsoletes: dracut <= 029
+Obsoletes: dracut-norescue
+Provides:  dracut-norescue
+
+Requires: bash >= 4
+Requires: coreutils
+Requires: cpio
+Requires: filesystem >= 2.1.0
+Requires: findutils
+Requires: grep
+Requires: hardlink
+Requires: gzip xz
+Requires: kmod
+Requires: sed
+Requires: kpartx
+
+%if 0%{?fedora} || 0%{?rhel} > 6
+Requires: util-linux >= 2.21
+Requires: systemd >= 199
+Requires: procps-ng
+Conflicts: grubby < 8.23
+%else
+Requires: udev > 166
+Requires: util-linux-ng >= 2.21
+%endif
+
+%if 0%{?fedora} || 0%{?rhel} > 6
+Conflicts: initscripts < 8.63-1
+Conflicts: plymouth < 0.8.0-0.2009.29.09.19.1
+%endif
+
+Conflicts: mdadm < 3.2.6-14
+
+%description
+dracut contains tools to create a bootable initramfs for 2.6 Linux kernels.
+Unlike existing implementations, dracut does hard-code as little as possible
+into the initramfs. dracut contains various modules which are driven by the
+event-based udev. Having root on MD, DM, LVM2, LUKS is supported as well as
+NFS, iSCSI, NBD, FCoE with the dracut-network package.
+
+%package network
+Summary: dracut modules to build a dracut initramfs with network support
+Requires: %{name} = %{version}-%{release}
+Requires: iputils
+Requires: iproute
+Requires: dhclient
+Obsoletes: dracut-generic < 008
+Provides:  dracut-generic = %{version}-%{release}
+
+%description network
+This package requires everything which is needed to build a generic
+all purpose initramfs with network support with dracut.
+
+%if 0%{?fedora} || 0%{?rhel} >= 6 || 0%{?suse_version}
+%package fips
+Summary: dracut modules to build a dracut initramfs with an integrity check
+Requires: %{name} = %{version}-%{release}
+Requires: hmaccalc
+%if 0%{?rhel} > 5
+# For Alpha 3, we want nss instead of nss-softokn
+Requires: nss
+%else
+Requires: nss-softokn
+%endif
+Requires: nss-softokn-freebl
+
+%description fips
+This package requires everything which is needed to build an
+initramfs with dracut, which does an integrity check.
+%endif
+
+%package fips-aesni
+Summary: dracut modules to build a dracut initramfs with an integrity check with aesni-intel
+Requires: %{name}-fips = %{version}-%{release}
+
+%description fips-aesni
+This package requires everything which is needed to build an
+initramfs with dracut, which does an integrity check and adds the aesni-intel kernel module.
+
+%package caps
+Summary: dracut modules to build a dracut initramfs which drops capabilities
+Requires: %{name} = %{version}-%{release}
+Requires: libcap
+
+%description caps
+This package requires everything which is needed to build an
+initramfs with dracut, which drops capabilities.
+
+%package config-generic
+Summary: dracut configuration to turn off hostonly image generation
+Requires: %{name} = %{version}-%{release}
+Obsoletes: dracut-nohostonly
+Provides:  dracut-nohostonly
+
+%description config-generic
+This package provides the configuration to turn off the host specific initramfs
+generation with dracut and generates a generic image by default.
+
+%package config-rescue
+Summary: dracut configuration to turn on rescue image generation
+Requires: %{name} = %{version}-%{release}
+Obsoletes: dracut <= 029
+
+%description config-rescue
+This package provides the configuration to turn on the rescue initramfs
+generation with dracut.
+
+%package tools
+Summary: dracut tools to build the local initramfs
+Requires: %{name} = %{version}-%{release}
+
+%description tools
+This package contains tools to assemble the local initrd and host configuration.
+
+%prep
+%setup -q -n %{name}-%{version}
+
+%if %{defined PATCH1}
+git init
+git config user.email "dracut-maint@redhat.com"
+git config user.name "Fedora dracut team"
+git add .
+git commit -a -q -m "%{version} baseline."
+
+# Apply all the patches.
+git am -p1 %{patches}
+%endif
+
+%build
+%configure --systemdsystemunitdir=%{_unitdir} --bashcompletiondir=$(pkg-config --variable=completionsdir bash-completion) --libdir=%{_prefix}/lib
+
+make %{?_smp_mflags}
+
+%install
+%if 0%{?fedora} || 0%{?rhel}
+rm -rf -- $RPM_BUILD_ROOT
+%endif
+make %{?_smp_mflags} install \
+     DESTDIR=$RPM_BUILD_ROOT \
+     libdir=%{_prefix}/lib
+
+echo "DRACUT_VERSION=%{version}-%{release}" > $RPM_BUILD_ROOT/%{dracutlibdir}/dracut-version.sh
+
+%if 0%{?fedora} == 0 && 0%{?rhel} == 0 && 0%{?suse_version} == 0
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/01fips
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/02fips-aesni
+%endif
+
+%if %{defined _unitdir}
+# for systemd, better use systemd-bootchart
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/00bootchart
+%endif
+
+# we do not support dash in the initramfs
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/00dash
+
+# remove gentoo specific modules
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/50gensplash
+
+%if %{defined _unitdir}
+# with systemd IMA and selinux modules do not make sense
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/96securityfs
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/97masterkey
+rm -fr -- $RPM_BUILD_ROOT/%{dracutlibdir}/modules.d/98integrity
+%endif
+
+mkdir -p $RPM_BUILD_ROOT/boot/dracut
+mkdir -p $RPM_BUILD_ROOT/var/lib/dracut/overlay
+mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log
+touch $RPM_BUILD_ROOT%{_localstatedir}/log/dracut.log
+mkdir -p $RPM_BUILD_ROOT%{_sharedstatedir}/initramfs
+
+%if 0%{?fedora} || 0%{?rhel} || 0%{?suse_version}
+install -m 0644 dracut.conf.d/fedora.conf.example $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/01-dist.conf
+install -m 0644 dracut.conf.d/fips.conf.example $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/40-fips.conf
+%endif
+
+%if 0%{?suse_version}
+install -m 0644 dracut.conf.d/suse.conf.example   $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/01-dist.conf
+%endif
+
+%if 0%{?fedora} <= 12 && 0%{?rhel} < 6 && 0%{?suse_version} <= 9999
+rm -f -- $RPM_BUILD_ROOT%{_bindir}/mkinitrd
+rm -f -- $RPM_BUILD_ROOT%{_bindir}/lsinitrd
+%endif
+
+%if 0%{?fedora} || 0%{?rhel} > 6
+# FIXME: remove after F19
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d
+install -m 0755 51-dracut-rescue-postinst.sh $RPM_BUILD_ROOT%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
+
+echo 'hostonly="no"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-generic-image.conf
+echo 'dracut_rescue_image="yes"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/02-rescue.conf
+%endif
+
+%if 0%{?fedora} || 0%{?rhel} || 0%{?suse_version}
+> $RPM_BUILD_ROOT/etc/system-fips
+%endif
+
+# create compat symlink
+mkdir -p $RPM_BUILD_ROOT%{_sbindir}
+ln -sr $RPM_BUILD_ROOT%{_bindir}/dracut $RPM_BUILD_ROOT%{_sbindir}/dracut
+
+%clean
+rm -rf -- $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,0755)
+%doc README HACKING TODO COPYING AUTHORS NEWS dracut.html dracut.png dracut.svg
+%{_bindir}/dracut
+# compat symlink
+%{_sbindir}/dracut
+%{_datadir}/bash-completion/completions/dracut
+%{_datadir}/bash-completion/completions/lsinitrd
+%if 0%{?fedora} > 12 || 0%{?rhel} >= 6 || 0%{?suse_version} > 9999
+%{_bindir}/mkinitrd
+%{_bindir}/lsinitrd
+%endif
+%dir %{dracutlibdir}
+%dir %{dracutlibdir}/modules.d
+%{dracutlibdir}/dracut-functions.sh
+%{dracutlibdir}/dracut-functions
+%{dracutlibdir}/dracut-version.sh
+%{dracutlibdir}/dracut-logger.sh
+%{dracutlibdir}/dracut-initramfs-restore
+%{dracutlibdir}/dracut-install
+%config(noreplace) %{_sysconfdir}/dracut.conf
+%if 0%{?fedora} || 0%{?suse_version} || 0%{?rhel}
+%{dracutlibdir}/dracut.conf.d/01-dist.conf
+%endif
+%dir %{_sysconfdir}/dracut.conf.d
+%dir %{dracutlibdir}/dracut.conf.d
+%{_mandir}/man8/dracut.8*
+%{_mandir}/man8/*service.8*
+%if 0%{?fedora} > 12 || 0%{?rhel} >= 6 || 0%{?suse_version} > 9999
+%{_mandir}/man8/mkinitrd.8*
+%{_mandir}/man1/lsinitrd.1*
+%endif
+%{_mandir}/man7/dracut.kernel.7*
+%{_mandir}/man7/dracut.cmdline.7*
+%{_mandir}/man7/dracut.modules.7*
+%{_mandir}/man7/dracut.bootup.7*
+%{_mandir}/man5/dracut.conf.5*
+%if %{defined _unitdir}
+%{dracutlibdir}/modules.d/00systemd-bootchart
+%else
+%{dracutlibdir}/modules.d/00bootchart
+%endif
+%{dracutlibdir}/modules.d/00bash
+%{dracutlibdir}/modules.d/03modsign
+%{dracutlibdir}/modules.d/03rescue
+%{dracutlibdir}/modules.d/04watchdog
+%{dracutlibdir}/modules.d/05busybox
+%{dracutlibdir}/modules.d/10i18n
+%{dracutlibdir}/modules.d/30convertfs
+%{dracutlibdir}/modules.d/45url-lib
+%{dracutlibdir}/modules.d/50drm
+%{dracutlibdir}/modules.d/50plymouth
+%{dracutlibdir}/modules.d/80cms
+%{dracutlibdir}/modules.d/90bcache
+%{dracutlibdir}/modules.d/90btrfs
+%{dracutlibdir}/modules.d/90crypt
+%{dracutlibdir}/modules.d/90dm
+%{dracutlibdir}/modules.d/90dmraid
+%{dracutlibdir}/modules.d/90dmsquash-live
+%{dracutlibdir}/modules.d/90kernel-modules
+%{dracutlibdir}/modules.d/90lvm
+%{dracutlibdir}/modules.d/90mdraid
+%{dracutlibdir}/modules.d/90multipath
+%{dracutlibdir}/modules.d/90qemu
+%{dracutlibdir}/modules.d/91crypt-gpg
+%{dracutlibdir}/modules.d/91crypt-loop
+%{dracutlibdir}/modules.d/95debug
+%{dracutlibdir}/modules.d/95resume
+%{dracutlibdir}/modules.d/95rootfs-block
+%{dracutlibdir}/modules.d/95dasd
+%{dracutlibdir}/modules.d/95dasd_mod
+%{dracutlibdir}/modules.d/95fstab-sys
+%{dracutlibdir}/modules.d/95zfcp
+%{dracutlibdir}/modules.d/95terminfo
+%{dracutlibdir}/modules.d/95udev-rules
+%{dracutlibdir}/modules.d/95virtfs
+%if %{undefined _unitdir}
+%{dracutlibdir}/modules.d/96securityfs
+%{dracutlibdir}/modules.d/97masterkey
+%{dracutlibdir}/modules.d/98integrity
+%endif
+%{dracutlibdir}/modules.d/97biosdevname
+%{dracutlibdir}/modules.d/98ecryptfs
+%{dracutlibdir}/modules.d/98pollcdrom
+%{dracutlibdir}/modules.d/98selinux
+%{dracutlibdir}/modules.d/98syslog
+%{dracutlibdir}/modules.d/98systemd
+%{dracutlibdir}/modules.d/98usrmount
+%{dracutlibdir}/modules.d/99base
+%{dracutlibdir}/modules.d/99fs-lib
+%{dracutlibdir}/modules.d/99img-lib
+%{dracutlibdir}/modules.d/99shutdown
+%attr(0644,root,root) %ghost %config(missingok,noreplace) %{_localstatedir}/log/dracut.log
+%dir %{_sharedstatedir}/initramfs
+%if %{defined _unitdir}
+%{_unitdir}/dracut-shutdown.service
+%{_unitdir}/shutdown.target.wants/dracut-shutdown.service
+%{_unitdir}/dracut-cmdline.service
+%{_unitdir}/dracut-initqueue.service
+%{_unitdir}/dracut-mount.service
+%{_unitdir}/dracut-pre-mount.service
+%{_unitdir}/dracut-pre-pivot.service
+%{_unitdir}/dracut-pre-trigger.service
+%{_unitdir}/dracut-pre-udev.service
+%{_unitdir}/initrd.target.wants/dracut-cmdline.service
+%{_unitdir}/initrd.target.wants/dracut-initqueue.service
+%{_unitdir}/initrd.target.wants/dracut-mount.service
+%{_unitdir}/initrd.target.wants/dracut-pre-mount.service
+%{_unitdir}/initrd.target.wants/dracut-pre-pivot.service
+%{_unitdir}/initrd.target.wants/dracut-pre-trigger.service
+%{_unitdir}/initrd.target.wants/dracut-pre-udev.service
+
+%endif
+%if 0%{?fedora} || 0%{?rhel} > 6
+%{_prefix}/lib/kernel/install.d/50-dracut.install
+%endif
+
+%files network
+%defattr(-,root,root,0755)
+%{dracutlibdir}/modules.d/40network
+%{dracutlibdir}/modules.d/95fcoe
+%{dracutlibdir}/modules.d/95iscsi
+%{dracutlibdir}/modules.d/90livenet
+%{dracutlibdir}/modules.d/90qemu-net
+%{dracutlibdir}/modules.d/95cifs
+%{dracutlibdir}/modules.d/95nbd
+%{dracutlibdir}/modules.d/95nfs
+%{dracutlibdir}/modules.d/95ssh-client
+%{dracutlibdir}/modules.d/45ifcfg
+%{dracutlibdir}/modules.d/95znet
+
+%if 0%{?fedora} || 0%{?rhel} || 0%{?suse_version}
+%files fips
+%defattr(-,root,root,0755)
+%{dracutlibdir}/modules.d/01fips
+%{dracutlibdir}/dracut.conf.d/40-fips.conf
+%config(missingok) /etc/system-fips
+%endif
+
+%files fips-aesni
+%defattr(-,root,root,0755)
+%doc COPYING
+%{dracutlibdir}/modules.d/02fips-aesni
+
+%files caps
+%defattr(-,root,root,0755)
+%{dracutlibdir}/modules.d/02caps
+
+%files tools
+%defattr(-,root,root,0755)
+%{_mandir}/man8/dracut-catimages.8*
+%{_bindir}/dracut-catimages
+%dir /boot/dracut
+%dir /var/lib/dracut
+%dir /var/lib/dracut/overlay
+
+%files config-generic
+%defattr(-,root,root,0755)
+%{dracutlibdir}/dracut.conf.d/02-generic-image.conf
+
+%files config-rescue
+%defattr(-,root,root,0755)
+%{dracutlibdir}/dracut.conf.d/02-rescue.conf
+%if 0%{?fedora} || 0%{?rhel} > 6
+%{_prefix}/lib/kernel/install.d/51-dracut-rescue.install
+%{_sysconfdir}/kernel/postinst.d/51-dracut-rescue-postinst.sh
+%endif
+
+%changelog
+* Mon Nov 04 2013 Harald Hoyer <harald@redhat.com> 033-40
+- fips: include crct10dif_generic
+Resolves: rhbz#1024455
+- add /etc/system-fips in the initramfs
+Resolves: rhbz#1014284
+
+* Wed Oct 30 2013 Harald Hoyer <harald@redhat.com> 033-39
+- fixed booting with rd.iscsi.firmware and without root=
+Resolves: rhbz#1024858
+- fixed resuming
+- fix swap detection in hostonly
+- fixed missing modules in hostonly, which have no modalias
+Resolves: rhbz#1015284
+- moved dracut to /usr/sbin
+
+* Mon Oct 21 2013 Harald Hoyer <harald@redhat.com> 033-32
+- fixed LVM with thin provisioning
+Resolves: rhbz#1020855
+
+* Fri Oct 18 2013 Harald Hoyer <harald@redhat.com> 033-30
+- fixed LVM with thin provisioning
+Resolves: rhbz#1020855
+
+* Wed Oct 09 2013 Harald Hoyer <harald@redhat.com> 033-26
+- create /dev/mapper/live-base for anaconda
+Resolves: rhbz#1009710
+- support "rootfallback=<root fallback device>"
+Resolves: rhbz#727333
+- add UEFI FCoE boot support
+Resolves: rhbz#732059
+- Make udev db records for MD devices persistent
+  so LVM on MD autoactivation works correctly
+Resolves: rhbz#1017031
+- support mdadm-3.2.6+ and mdadm-3.3+
+- install lvm thin utils for non-hostonly also
+
+* Wed Oct 02 2013 Harald Hoyer <harald@redhat.com> 033-14
+- hopefully fixed systemd-cat test
+Resolves: rhbz#1002021
+
+* Tue Oct 01 2013 Harald Hoyer <harald@redhat.com> 033-4
+- add /etc/system-fips
+Resolves: rhbz#1014284
+
+* Fri Sep 13 2013 Harald Hoyer <harald@redhat.com> 033-3
+- do not dhcp members of team, bond, etc.
+
+* Fri Sep 13 2013 Harald Hoyer <harald@redhat.com> 033-2
+- harden against weird ppc kernel driver
+Resolves: rhbz#1007891
+
+* Wed Sep 04 2013 Harald Hoyer <harald@redhat.com> 032-23
+- do not fail on empty dracut module directories
+Resolves: rhbz#1003153
+- parse cmdline parameter, even if rootok=1
+Resolves: rhbz#978330
+- fixed ibft_to_cmdline()
+
+* Thu Aug 29 2013 Harald Hoyer <harald@redhat.com> 032-19
+- fixed curl error with zero size kickstart file
+Resolves: rhbz#989133
+- fixed systemd-cat failure, when systemd is installed
+  but not actually running
+Resolves: rhbz#1002021
+- do not fail on empty dracut module directories
+Resolves: rhbz#1003153
+
+* Tue Aug 20 2013 Harald Hoyer <harald@redhat.com> 032-1
+- fix for kdump in FIPS mode
+Resolves: rhbz#920931
+- fixed iBFT booting
+Resolves: rhbz#989944
+- fixed FIPS mode initramfs creation
+Resolves: rhbz#990250
+- shutdown: fixed killall_proc_mountpoint()
+Resolves: rhbz#996549
+- disable lvmetad in the initramfs
+Resolves: rhbz#996627
+- require dhclient
+
+* Mon Aug 12 2013 Harald Hoyer <harald@redhat.com> 031-29.git20130812
+- added missing "then" in initqueue
+
+* Mon Aug 12 2013 Harald Hoyer <harald@redhat.com> 031-28.git20130812
+- fixed typo in hostonly device recognition
+
+* Fri Aug 09 2013 Harald Hoyer <harald@redhat.com> 031-24.git20130809
+- fixed logging to journal
+
+* Fri Aug 09 2013 Harald Hoyer <harald@redhat.com> 031-23.git20130809
+- fixed lsinitrd
+
+* Fri Aug 09 2013 Harald Hoyer <harald@redhat.com> 031-22.git20130809
+- lsinitrd.sh: add old cpio signature
+- dracut.sh: call find with -print0 and cpio with --null
+- dracut.asc: small corrections
+- systemd/dracut-initqueue.sh: continue to boot if finished failed
+- dracut.sh/dracut-functions.sh: handle root on non-block device
+- dracut-functions.sh: removed non dracut-install shell functions
+- dracut-functions.sh: inst_multiple == dracut_install
+- 51-dracut-rescue.install: fixed rescue image creation
+- dracut.sh: do not strip in FIPS mode
+Resolves: rhbz#990250
+- dracut.sh: check the value of --kver
+- crypt: Fix typo--/etc/crypttab not /etc/cryptab
+- network/net-lib.sh: fix ibft interface configuration
+- iscsi/module-setup.sh: install some modules regardless of hostonly
+- multipath: need_shutdown if multipath devices exist
+Resolves: rhbz#994913
+- omit drivers fix
+
+* Thu Aug 01 2013 Harald Hoyer <harald@redhat.com> 031-7.git20130801
+- also install vt102 terminfo
+
+* Wed Jul 31 2013 Harald Hoyer <harald@redhat.com> 031-6.git20130731
+- cmssetup: fixed port for zfcp.conf
+- lvm: call lvchange with --yes to boot from snapshots
+
+* Wed Jul 31 2013 Harald Hoyer <harald@redhat.com> 031-4.git20130731
+- remove action_on_fail kernel command line parameter
+
+* Wed Jul 31 2013 Harald Hoyer <harald@redhat.com> 031-3.git20130731
+- do not include adjtime and localtime in the initramfs
+- write out vlan configs
+
+* Wed Jul 31 2013 Harald Hoyer <harald@redhat.com> 031-1
+- do not include the resume dracut module in hostonly mode,
+  if no swap is present
+- don't warn twice about omitted modules
+- use systemd-cat for logging on systemd systems, if logfile is unset
+- fixed PARTUUID parsing
+- support kernel module signing keys
+- do not install the usrmount dracut module in hostonly mode,
+  if /sbin/init does not live in /usr
+- add debian udev rule files
+- add support for bcache
+- network: handle bootif style interfaces
+  e.g. ip=77-77-6f-6f-64-73:dhcp
+- add support for kmod static devnodes
+- add vlan support for iBFT
+
+* Wed Jul 24 2013 Kyle McMartin <kyle@redhat.com> 030-2
+- Add ehci-tegra.ko to initramfs to allow rawhide tegra based platforms
+  to boot off USB disks.
+
+* Wed Jul 17 2013 Harald Hoyer <harald@redhat.com> 030-1
+- support new persistent network interface names
+- fix findmnt calls, prevents hang on stale NFS mounts
+- add systemd.slice and slice.target units
+- major shell cleanup
+- support root=PARTLABEL= and root=PARTUUID=
+- terminfo: only install l/linux v/vt100 and v/vt220
+- unset all LC_* and LANG, 10% faster
+- fixed dependency loop for dracut-cmdline.service
+- do not wait_for_dev for the root devices
+- do not wait_for_dev for devices, if dracut-initqueue is not needed
+- support early microcode loading with --early-microcode
+- dmraid, let dmraid setup its own partitions
+- sosreport renamed to rdsosreport
+
+* Fri Jun 14 2013 Harald Hoyer <harald@redhat.com> 029-1
+- wait for IPv6 auto configuration
+Resolves: rhbz#973719
+- i18n: make the default font configurable
+- systemd/dracut-pre-pivot.service: also execute for cleanup hooks or rd.break
+- add dracut-shutdown.service.8 manpage
+- lvm: redirect error message of lvs to /dev/null
+Resolves: rhbz#921235
+
+* Wed Jun 12 2013 Harald Hoyer <harald@redhat.com> 028-1
+- lvm: fixed "thin" recognition
+Resolves: rhbz#921235
+- install libs also from one dir above
+  fixes booting power6 generated initramfs on power7
+- setup correct system time and time zone in initrd
+- cms fixups
+Resolves: rhbz#970982 rhbz#971025 rhbz#825199
+- iso-scan/filename fixes
+Resolves: rhbz#972337
+- add udev rules for persistent network naming
+Resolves: rhbz#972662
+
+* Tue Jun 04 2013 Dennis Gilmore <dennis@ausil.us> 027-82.git20130531
+- add patch to include  panel-tfp410 module on arm systems
+
+* Fri May 31 2013 Harald Hoyer <harald@redhat.com> 027-81.git20130531
+- fix btrfs mount flags for /usr
+- degrade message about missing tools for stripping
+Resolves: rhbz#958519
+- set environment vars DRACUT_SYSTEMD, NEWROOT in service file
+Resolves: rhbz#963159
+- don't add volatile swap partitions to host_devs
+- add libssl.so.10 to make kdump work with fips mode
+- readd selinux dracut module for kdump
+- url-lib/url-lib.sh: turn off curl globbing
+Resolves: rhbz#907497
+- include btrfs-zero-log in the initramfs
+Resolves: rhbz#963257
+- proper NAME the network interfaces
+Resolves: rhbz#965842
+- install default font latarcyrheb-sun16
+Resolves: rhbz#927564
+- optionally install /etc/pcmcia/config.opts
+Resolves: rhbz#920076
+- fix ONBOOT for slaves, set TYPE=Bond for bonding
+Resolves: rhbz#919001
+- add nvme kernel module
+Resolves: rhbz#910734
+- add xfs_metadump
+- selinux: load_policy script fix
+- add hid-hyperv and hv-vmbus kernel modules
+- add parameter rd.live.squashimg
+Resolves: rhbz#789036 rhbz#782108
+- wait for all required interfaces if "rd.neednet=1"
+Resolves: rhbz#801829
+- lvm: add tools for thin provisioning
+Resolves: rhbz#921235
+- ifcfg/write-ifcfg.sh: fixed ifcfg file generation
+- do not wait for mpath* devices
+Resolves: rhbz#969068
+
+* Wed May 22 2013 Adam Williamson <awilliam@redhat.com> 027-46.git20130430
+- don't specify "p" as a separator for dmraid
+Resolves: rhbz#966162
+
+* Tue Apr 30 2013 Harald Hoyer <harald@redhat.com> 027-45.git20130430
+- fixed fips mode more
+Resolves: rhbz#956521
+
+* Thu Apr 25 2013 Harald Hoyer <harald@redhat.com> 027-39.git20130425
+- fix shutdown, if /dev/console is not writeable
+- fixed fips mode
+Resolves: rhbz#956521
+
+* Thu Apr 18 2013 Harald Hoyer <harald@redhat.com> 027-36.git20130418
+- fix initramfs creation on noexec tmpdir
+Resolves: rhbz#953426
+- more options for lsinitrd
+- bash completion for lsinitrd
+- do not output debug information on initramfs creation, if rd.debug is
+  on the kernel command line
+- drop requirement on 'file', lsinitrd can find the magic on its own
+
+* Mon Apr 15 2013 Harald Hoyer <harald@redhat.com> 027-26.git20130415
+- do not call plymouth with full path
+- include systemd-random-seed-load.service
+- fix ca-bundle.crt for ssl curl
+Resolves: rhbz#950770
+- add support for "iso-scan/filename" kernel parameter
+
+* Wed Apr 10 2013 Harald Hoyer <harald@redhat.com> 027-19.git20130410
+- also handle UUID= entries in crypttab in host-only mode
+Resolves:rhbz#919752
+
+* Tue Apr 09 2013 Harald Hoyer <harald@redhat.com> 027-17.git20130409
+- only include needed /etc/crypttab entries
+Resolves:rhbz#919752
+- add support for bridge over team and vlan
+- support multiple bonding interfaces
+- add "action_on_fail=" kernel command line parameter
+- add support for bridge over a vlan tagged interface
+
+* Fri Apr 05 2013 Harald Hoyer <harald@redhat.com> 027-10.git20130405
+- fix crypto password timeout on the dracut side
+
+* Tue Mar 26 2013 Harald Hoyer <harald@redhat.com> 027-1
+- version 027
+
+* Wed Mar 20 2013 Harald Hoyer <harald@redhat.com> 026-72.git20130320
+- fix rescue image naming
+Resolves: rhbz#923439
+- turn off host-only mode if essential system filesystems not mounted
+- turn off host-only mode if udev database is not accessible
+
+* Tue Mar 19 2013 Harald Hoyer <harald@redhat.com> 026-62.git20130319
+- fix dracut service ordering
+Resolves: rhbz#922991
+
+* Mon Mar 18 2013 Harald Hoyer <harald@redhat.com> 026-56.git20130318
+- don't fail hard on kernel modules install
+Resolves: rhbz#922565
+
+* Mon Mar 18 2013 Harald Hoyer <harald@redhat.com> 026-55.git20130318
+- install all host filesystem drivers
+Resolves: rhbz#922565
+
+* Sat Mar 16 2013 Harald Hoyer <harald@redhat.com> 026-54.git20130316
+- fix for squashfs
+Resolves: rhbz#922248
+- documentation fixes
+- sosreport, mkdir /run/initramfs
+
+* Fri Mar 15 2013 Harald Hoyer <harald@redhat.com> 026-48.git20130315
+- use new initrd.target from systemd
+- fixed rescue generation
+
+* Wed Mar 13 2013 Harald Hoyer <harald@redhat.com> 026-33.git20130313
+- add module-load.d modules to the initramfs
+- add sysctl.d to the initramfs
+- optimize plymouth module for systemd mode
+- add new dracut parameter "--regenerate-all"
+- add new dracut parameter "--noimageifnotneeded"
+- shutdown: mount move /run /sys /dev /proc out of /oldroot
+  before pre-shutdown
+- add bash completion for dracut
+
+* Wed Mar 13 2013 Harald Hoyer <harald@redhat.com> 026-19.git20130313
+- fix switch-root and local-fs.target problem
+- add norescue and nohostonly subpackages
+
+* Mon Mar 11 2013 Harald Hoyer <harald@redhat.com> 026-15.git20130311
+- update to recent git
+
+* Fri Mar 08 2013 Harald Hoyer <harald@redhat.com> 026-1
+- version 026
+
+* Mon Feb 11 2013 Harald Hoyer <harald@redhat.com> 025-35.git20130211
+- update to recent git
+
+* Wed Jan 23 2013 Harald Hoyer <harald@redhat.com> 025-1
+- version 025
+
+* Tue Aug 21 2012 Harald Hoyer <harald@redhat.com> 023-13.git20120821
+- reintroduce rd.neednet, which reenables anaconda networking
+- fix some dracut-install corner cases
+- fix FIPS for /boot not on extra partition
+
+* Wed Aug 01 2012 Dennis Gilmore <dennis@ausil.us> - 023-2
+- add patch to include omap_hsmmc for arm
+
+* Wed Aug 01 2012 Harald Hoyer <harald@redhat.com> 023-1
+- version 023
+
+* Mon Jul 30 2012 Harald Hoyer <harald@redhat.com> 022-99.git20120730
+- removed install of missing finished-ask-password.sh
+
+* Mon Jul 30 2012 Harald Hoyer <harald@redhat.com> 022-97.git20120730
+- moved crypt setup to systemd units
+
+* Fri Jul 27 2012 Harald Hoyer <harald@redhat.com> 022-63.git20120727
+- fixed dracut-install bug if /var/tmp contains a symlink
+- fixed some partx issues
+
+* Mon Jul 23 2012 Harald Hoyer <harald@redhat.com> 022-5.git20120723
+- dracut.8: added more documentation about executing dracut
+
+* Fri Jul 20 2012 Harald Hoyer <harald@redhat.com> 022-2.git20120720
+- fixed some race condition for resume from hibernation
+
+* Fri Jul 20 2012 Harald Hoyer <harald@redhat.com> 022-1
+- version 022
+- host-only kernel modules fix
+
+* Fri Jul 20 2012 Harald Hoyer <harald@redhat.com> 021-1
+- version 21
+- systemd in the initramfs reenabled
+- new option "--kver"
+
+* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 020-97.git20120717
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Tue Jul 17 2012 Harald Hoyer <harald@redhat.com> 020-96.git20120717
+- disabled systemd in the initramfs, until it works correctly
+
+* Wed Jul 11 2012 Harald Hoyer <harald@redhat.com> 020-84.git20120711
+- add back "--force" to switch-root, otherwise systemd umounts /run
+
+* Wed Jul 11 2012 Harald Hoyer <harald@redhat.com> 020-83.git20120711
+- more systemd journal fixes
+- nfs module fix
+- install also /lib/modprobe.d/*
+- fixed dracut-shutdown service
+- safeguards for dracut-install
+- for --include also copy symlinks
+
+* Tue Jul 10 2012 Harald Hoyer <harald@redhat.com> 020-72.git20120710
+- stop journal rather than restart
+- copy over dracut services to /run/systemd/system
+
+* Tue Jul 10 2012 Harald Hoyer <harald@redhat.com> 020-70.git20120710
+- more systemd unit fixups
+- restart systemd-journald in switch-root post
+- fixed dracut-install loader ldd error message
+
+* Mon Jul 09 2012 Harald Hoyer <harald@redhat.com> 020-64.git20120709
+- fixed plymouth install
+- fixed resume
+- fixed dhcp
+- no dracut systemd services installed in the system
+
+* Mon Jul 09 2012 Harald Hoyer <harald@redhat.com> 020-57.git20120709
+- more fixups for systemd-udevd unit renaming
+
+* Mon Jul 09 2012 Harald Hoyer <harald@redhat.com> 020-55.git20120709
+- require systemd >= 186
+- more fixups for systemd-udevd unit renaming
+
+* Mon Jul 09 2012 Harald Hoyer <harald@redhat.com> 020-52.git20120709
+- fixed prefix in 01-dist.conf
+
+* Fri Jul 06 2012 Harald Hoyer <harald@redhat.com> 020-51.git20120706
+- cope with systemd-udevd unit renaming
+- fixed network renaming
+- removed dash module
+
+* Mon Jul 02 2012 Harald Hoyer <harald@redhat.com> 020-22.git20120702
+- fixed kernel modules install
+
+* Mon Jul 02 2012 Harald Hoyer <harald@redhat.com> 020-21.git20120702
+- moved /usr/bin/dracut-install to /usr/lib
+- more speedups
+
+* Fri Jun 29 2012 Harald Hoyer <harald@redhat.com> 020-1
+- version 020
+- new /usr/bin/dracut-install tool
+- major speedup of the image creation
+
+* Mon Jun 25 2012 Harald Hoyer <harald@redhat.com> 019-92.git20120625
+- support vlan tagged binding
+- speedup initramfs emergency service
+- speedup image creation
+- fix installkernel() return codes
+Resolves: rhbz#833256
+- add qemu and qemu-net modules to add qemu drivers even in host-only
+- speedup btrfs and xfs fsck (nop)
+- no more mknod in the initramfs (fixes plymouth on s390)
+
+* Thu Jun 21 2012 Harald Hoyer <harald@redhat.com> 019-62.git20120621
+- do not require pkg-config for systemd
+- i18n fixes
+- less systemd services in the initramfs
+
+* Thu Jun 21 2012 Harald Hoyer <harald@redhat.com> 019-57.git20120620
+- systemd is now the default init in the initramfs
+
+* Mon Jun 18 2012 Harald Hoyer <harald@redhat.com> 019-40.git20120618
+- new upstream version
+
+* Mon Jun 11 2012 Harald Hoyer <harald@redhat.com> 019-16.git20120611
+- new upstream version
+
+* Tue Jun 05 2012 Dennis Gilmore <dennis@ausil.us> 019-2
+- include omapdrm with the arm modules
+
+* Mon Jun 04 2012 Harald Hoyer <harald@redhat.com> 019-1
+- version 019-1
+
+* Tue May 22 2012 Harald Hoyer <harald@redhat.com> 018-74.git20120522
+- new upstream version
+
+* Thu May 17 2012 Dennis Gilmore <dennis@ausil.us> 018-53.git20120509
+- add patch to pull in arm storage modules
+
+* Wed May 09 2012 Harald Hoyer <harald@redhat.com> 018-52.git20120509
+- new upstream version
+
+* Fri May 04 2012 Harald Hoyer <harald@redhat.com> 018-40.git20120504
+- new upstream version
+
+* Wed Apr 25 2012 Harald Hoyer <harald@redhat.com> 018-37.git20120425.1
+- fixup for multipath and iscsi host-only detection
+
+* Wed Apr 25 2012 Harald Hoyer <harald@redhat.com> 018-37.git20120425
+- fixed udevd location
+
+* Tue Apr 24 2012 Harald Hoyer <harald@redhat.com> 018-33.git20120424
+- new upstream version
+
+* Thu Apr 19 2012 Harald Hoyer <harald@redhat.com> 018-25.git20120419
+- fixed network for non-network root (like installer media)
+
+* Wed Apr 18 2012 Harald Hoyer <harald@redhat.com> 018-22.git20120418
+- new upstream version
+
+* Mon Apr 16 2012 Harald Hoyer <harald@redhat.com> 018-12.git20120416
+- new upstream version, which fixes various anaconda loader issues
+
+* Thu Apr 05 2012 Harald Hoyer <harald@redhat.com> 018-1
+- version 018
+
+* Thu Mar 22 2012 Harald Hoyer <harald@redhat.com> 017-62.git20120322
+- fixed /run prefix copying
+
+* Wed Mar 21 2012 Harald Hoyer <harald@redhat.com> 017-59.git20120321
+- new upstream version, which fixes various anaconda loader issues
+
+* Mon Mar 12 2012 Harald Hoyer <harald@redhat.com> 017-43.git20120312
+- live image: fixed image uncompression
+- live updates for livenet
+
+* Thu Mar 08 2012 Harald Hoyer <harald@redhat.com> 017-40.git20120308
+- add s390 ctcm network kernel module
+
+* Thu Mar 08 2012 Harald Hoyer <harald@redhat.com> 017-39.git20120308
+- kill dhclient silently
+- cleanup and fix network config writeout to /run/initramfs/state
+Resolves: rhbz#799989
+- various cleanups
+
+* Fri Mar 02 2012 Harald Hoyer <harald@redhat.com> 017-22.git20120302
+- nfs path fixes for live image over nfs
+  root=live:nfs://10.10.10.10:/srv/all/install.img ip=dhcp rd.neednet
+
+* Thu Mar 01 2012 Harald Hoyer <harald@redhat.com> 017-19.git20120301
+- fixed include of some kernel modules
+
+* Wed Feb 29 2012 Harald Hoyer <harald@redhat.com> 017-17.git20120229
+- update to latest git
+- fixes for convertfs (/usr-move)
+
+* Fri Feb 24 2012 Harald Hoyer <harald@redhat.com> 017-1
+- version 017
+
+* Fri Feb 17 2012 Harald Hoyer <harald@redhat.com> 016-9.git20120217
+- update to latest git
+
+* Wed Feb 15 2012 Harald Hoyer <harald@redhat.com> 016-1
+- version 016
+
+* Mon Feb 13 2012 Harald Hoyer <harald@redhat.com> 015-9.git20120213
+- update to latest git
+
+* Sun Feb 12 2012 Kay Sievers <kay@redhat.com> - 015-9.git20120210
+- fix dependency loop in systemd service files
+
+* Fri Feb 10 2012 Harald Hoyer <harald@redhat.com> 015-8.git20120210
+- update to latest git
+
+* Thu Feb 09 2012 Harald Hoyer <harald@redhat.com> 015-7.git20120209
+- update to latest git
+
+* Thu Feb 09 2012 Harald Hoyer <harald@redhat.com> 015-4.git20120209
+- update to latest git
+
+* Wed Feb 08 2012 Harald Hoyer <harald@redhat.com> 015-3.git20120208
+- update to latest git
+
+* Tue Feb 07 2012 Harald Hoyer <harald@redhat.com> 015-1
+- version 015
+
+* Thu Feb 02 2012 Harald Hoyer <harald@redhat.com> 014-81.git20120202
+- update to latest git
+
+* Thu Feb 02 2012 Harald Hoyer <harald@redhat.com> 014-80.git20120202
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-77.git20120126.1
+- rebuild for rawhide
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-77.git20120126
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-76.git20120126
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-75.git20120126
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-74.git20120126
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-73.git20120126
+- update to latest git
+
+* Thu Jan 26 2012 Harald Hoyer <harald@redhat.com> 014-72.git20120126
+- update to latest git
+
+* Mon Jan 23 2012 Harald Hoyer <harald@redhat.com> 014-65.git20120123
+- update to latest git
+
+* Mon Jan 23 2012 Harald Hoyer <harald@redhat.com> 014-61.git20120123
+- update to latest git
+
+* Tue Jan 17 2012 Harald Hoyer <harald@redhat.com> 014-38.git20120117
+- update to latest git
+
+* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 014-10.git20111215
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Thu Dec 15 2011 Harald Hoyer <harald@redhat.com> 014-9.git20111215
+- update to latest git
+- lots of patch changes
+
+* Fri Oct 21 2011 Harald Hoyer <harald@redhat.com> 013-100.git20111021
+- update to latest git
+
+* Thu Oct 20 2011 Harald Hoyer <harald@redhat.com> 013-93.git20111020
+- update to latest git
+
+* Wed Oct 19 2011 Harald Hoyer <harald@redhat.com> 013-85.git20111019
+- update to latest git
+
+* Tue Oct 04 2011 Harald Hoyer <harald@redhat.com> 013-15
+- fixed mdraid container handling
+Resolves: rhbz#743240
+
+* Thu Sep 22 2011 Harald Hoyer <harald@redhat.com> 013-13
+- fixed mdraid issues
+- fixed btrfsck
+Resolves: rhbz#735602
+
+* Wed Sep 21 2011 Harald Hoyer <harald@redhat.com> 013-12
+- removed patch backup files
+- reintroduced /dev/live
+
+* Tue Sep 20 2011 Harald Hoyer <harald@redhat.com> 013-11
+- move mounting of securitfs to a seperate module
+Resolves: rhbz#737140
+
+* Tue Sep 20 2011 Harald Hoyer <harald@redhat.com> 013-10
+- mount securitfs with the correct source
+Resolves: rhbz#737140
+
+* Tue Sep 20 2011 Harald Hoyer <harald@redhat.com> 013-9
+- do not carry over initramfs udev rules
+Resolves: rhbz#734096
+
+* Fri Sep 02 2011 Harald Hoyer <harald@redhat.com> 013-8
+- hopefully fixed one part of a loop/udev and loop/mount race
+Resolves: rhbz#735199
+
+* Wed Aug 31 2011 Harald Hoyer <harald@redhat.com> 013-7
+- add /lib/udev/input_id to the initramfs
+- fix hmac install
+
+* Tue Aug 30 2011 Harald Hoyer <harald@redhat.com> 013-6
+- fixed environment passing to real init
+Resolves: rhbz#733674
+- fixed lvm on md
+
+* Mon Aug 29 2011 Harald Hoyer <harald@redhat.com> 013-5
+- fixed rhel/fedora version checks
+
+* Wed Aug 17 2011 Harald Hoyer <harald@redhat.com> 013-4
+- fixed crash with livenet installed
+
+* Wed Aug 17 2011 Harald Hoyer <harald@redhat.com> 013-3
+- fixed live iso mounting
+Resolves: rhbz#730579
+
+* Fri Aug 12 2011 Harald Hoyer <harald@redhat.com> 013-1
+- fixed symlink creation for lorax
+
+* Wed Aug 10 2011 Harald Hoyer <harald@redhat.com> 011-41.git20110810
+- fixed getargs() for empty args
+
+* Wed Aug 10 2011 Harald Hoyer <harald@redhat.com> 011-40.git20110810
+- fixed symbolic link creation in the initramfs
+Resolves: rhbz#728863
+
+* Wed Jul 20 2011 Harald Hoyer <harald@redhat.com> 011-15.git20110720
+- "eject" is optional now
+- refined shutdown procedure
+
+* Mon Jul 18 2011 Harald Hoyer <harald@redhat.com> 011-1
+- version 011
+
+* Fri May 20 2011 Harald Hoyer <harald@redhat.com> 011-0.1%{?rdist}
+- git snapshot of pre-version 011
+
+* Fri Apr 01 2011 Harald Hoyer <harald@redhat.com> 010-1
+- version 010
+
+* Thu Mar 31 2011 Harald Hoyer <harald@redhat.com> 009-5
+- fixed PATH and kmsg logging
+
+* Thu Mar 31 2011 Harald Hoyer <harald@redhat.com> 009-4
+- fixed dmsquash rule generation
+- fixed fips boot arg parsing
+- fixed plymouth pid generation
+
+* Wed Mar 30 2011 Harald Hoyer <harald@redhat.com> 009-3
+- fixed dhcp
+- added /lib/firmware/updates to firmware directories 
+- fixed LiveCD /dev/.initramfs fallback
+- fixed cdrom polling
+- dropped net-tools dependency
+
+* Tue Mar 29 2011 Harald Hoyer <harald@redhat.com> 009-2
+- fixed empty output file argument handling:
+  "dracut '' <kernel version>" 
+
+* Mon Mar 28 2011 Harald Hoyer <harald@redhat.com> 009-1
+- version 009
+
+* Thu Mar 17 2011 Harald Hoyer <harald@redhat.com> 009-0.1
+- version 009 prerelease
+
+* Tue Feb 22 2011 Harald Hoyer <harald@redhat.com> 008-7
+- fixed lvm version parsing
+
+* Tue Feb 22 2011 Harald Hoyer <harald@redhat.com> 008-6
+- fixed lvm version parsing
+
+* Mon Feb 21 2011 Harald Hoyer <harald@redhat.com> 008-5
+- fixed i18n unicode setting
+- set cdrom in kernel polling
+
+* Fri Feb 18 2011 Harald Hoyer <harald@redhat.com> 008-4
+- readded dist tag
+
+* Fri Feb 18 2011 Harald Hoyer <harald@redhat.com> 008-3
+- fixed i18n
+- turned off selinux by default
+
+* Wed Feb 09 2011 Harald Hoyer <harald@redhat.com> 008-2
+- do not write dracut.log to /tmp under any circumstances
+- touch /dev/.systemd/plymouth after plymouth started
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 008-1.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Wed Feb 02 2011 Harald Hoyer <harald@redhat.com> 008-1
+- version 008-1
+
+* Mon Jan 17 2011 Harald Hoyer <harald@redhat.com> 008-0.11
+- removed "mount" requirement
+
+* Thu Nov 18 2010 Harald Hoyer <harald@redhat.com> - 008-0.10
+- dracut-008 pre git snapshot
+- fixes /dev/dri permissions
+Resolves: rhbz#626559
+
+* Fri Nov 12 2010 Harald Hoyer <harald@redhat.com> 008-0.9
+- dracut-008 pre git snapshot
+- fixes /dev/.udev permissions
+Resolves: rhbz#651594
+
+* Wed Nov  3 2010 Harald Hoyer <harald@redhat.com> - 008-0.8
+- fixed fsck -a option
+
+* Fri Oct 29 2010 Harald Hoyer <harald@redhat.com> 008-0.7
+- added fsck to initramfs
+
+* Fri Oct 29 2010 Harald Hoyer <harald@redhat.com> 008-0.6
+- fixed rpm macros
+
+* Fri Oct 29 2010 Harald Hoyer <harald@redhat.com> 008-0.5
+- dracut-008 pre git snapshot
+
+* Mon Aug 09 2010 Harald Hoyer <harald@redhat.com> 007-1
+- version 007
+
+* Thu Jun 17 2010 Harald Hoyer <harald@redhat.com> 006-1
+- version 006
+
+* Fri Jun 11 2010 Harald Hoyer <harald@redhat.com>
+- Remove requirements, which are not really needed
+Resolves: rhbz#598509
+- fixed copy of network config to /dev/.initramfs/ (patch 146)
+Resolves: rhbz#594649
+- more password beauty (patch 142)
+Resolves: rhbz#561092
+- support multiple iSCSI disks (patch 143)
+Resolves: rbhz#580190
+- fixed selinux=0 (patch 130)
+Resolves: rhbz#593080
+- add support for booting LVM snapshot root volume (patch 145)
+Resolves: rbhz#602723
+- remove hardware field from BOOTIF= (patch 148)
+Resolves: rhbz#599593
+- add aes kernel modules and fix crypt handling (patch 137, patch 140 and patch 147)
+Resolves: rhbz#600170
+
+* Thu May 27 2010 Harald Hoyer <harald@redhat.com> 
+- fixed Requirements
+- fixed autoip6 
+Resolves: rhbz#538388
+- fixed multipath
+Resolves: rhbz#595719
+
+* Thu May 06 2010 Harald Hoyer <harald@redhat.com> 
+- only display short password messages
+Resolves: rhbz#561092
+
+* Thu May 06 2010 Harald Hoyer <harald@redhat.com>
+- fixed dracut manpages 
+Resolves: rhbz#589109
+- use ccw-init and ccw rules from s390utils
+Resolves: rhbz#533494
+- fixed fcoe
+Resolves: rhbz#486244
+- various other bugfixes seen in Fedora
+
+* Tue Apr 20 2010 Harald Hoyer <harald@redhat.com> 
+- fixed network with multiple nics
+- fixed nfsidmap paths
+- do not run blkid on non active container raids
+- fixed cdrom polling mechanism
+- update to latest git
+
+* Thu Apr 15 2010 Harald Hoyer <harald@redhat.com>
+- fixed dracut manpages
+- dmraid parse different error messages
+- add cdrom polling mechanism for slow cdroms
+- add module btrfs
+- teach dmsquash live-root to use rootflags
+- trigger udev with action=add
+- fixed add_drivers handling 
+- add sr_mod
+- use pigz instead of gzip, if available
+
+* Thu Mar 25 2010 Harald Hoyer <harald@redhat.com> 
+- removed firmware requirements (rhbz#572634)
+- add /etc/dracut.conf.d
+- Resolves: rhbz#572634
+
+* Fri Mar 19 2010 Harald Hoyer <harald@redhat.com> 
+- version 005
+
+* Fri Mar 19 2010 Harald Hoyer <harald@redhat.com> 
+- fixed rpmlint errors (rhbz#570547)
+- removed firmware package from dracut-kernel (rhbz#572634)
+- add dcb support to dracut's FCoE support (rhbz#563794)
+- force install some modules in hostonly mode (rhbz#573094)
+- various other bugfixes
+- Resolves: rhbz#570547, rhbz#572634, rhbz#563794, rhbz#573094
+
+* Thu Feb 18 2010 Harald Hoyer <harald@redhat.com> 004-15
+- fixed "selinux=0" booting (rhbz#566376)
+- fixed internal IFS handling
+- Resolves: rhbz#566376
+
+* Fri Jan 29 2010 Harald Hoyer <harald@redhat.com> 004-5
+- fixed firmware.sh bug (#559975 #559597)
+
+* Tue Jan 26 2010 Harald Hoyer <harald@redhat.com> 004-4
+- add multipath check
+
+* Tue Jan 26 2010 Harald Hoyer <harald@redhat.com> 004-3
+- fix selinux handling if .autorelabel is present
+- Resolves: rhbz#557744
+
+* Wed Jan 20 2010 Harald Hoyer <harald@redhat.com> 004-2
+- fix emergency_shell argument parsing
+- Related: rhbz#543948
+
+* Fri Jan 15 2010 Harald Hoyer <harald@redhat.com> 004-1
+- version 004
+- Resolves: rhbz#529339 rhbz#533494 rhbz#548550 
+- Resolves: rhbz#548555 rhbz#553195
+
+* Wed Jan 13 2010 Harald Hoyer <harald@redhat.com> 003-3
+- add Obsoletes of mkinitrd/nash/libbdevid-python
+- Related: rhbz#543948
+
+* Wed Jan 13 2010 Warren Togami <wtogami@redhat.com> 003-2
+- nbd is Fedora only
+
+* Fri Nov 27 2009 Harald Hoyer <harald@redhat.com> 003-1
+- version 003
+
+* Mon Nov 23 2009 Harald Hoyer <harald@redhat.com> 002-26
+- add WITH_SWITCH_ROOT make flag
+- add fips requirement conditional
+- add more device mapper modules (bug #539656)
+
+* Fri Nov 20 2009 Dennis Gregorovic <dgregor@redhat.com> - 002-25.1
+- nss changes for Alpha 3
+
+* Thu Nov 19 2009 Harald Hoyer <harald@redhat.com> 002-25
+- add more requirements for dracut-fips (bug #539257)
+
+* Tue Nov 17 2009 Harald Hoyer <harald@redhat.com> 002-24
+- put fips module in a subpackage (bug #537619)
+
+* Tue Nov 17 2009 Harald Hoyer <harald@redhat.com> 002-23
+- install xdr utils for multipath (bug #463458)
+
+* Thu Nov 12 2009 Harald Hoyer <harald@redhat.com> 002-22
+- add module 90multipath
+- add module 01fips
+- renamed module 95ccw to 95znet (bug #533833)
+- crypt: ignore devices in /etc/crypttab (root is not in there)
+- dasd: only install /etc/dasd.conf in hostonly mode (bug #533833)
+- zfcp: only install /etc/zfcp.conf in hostonly mode (bug #533833)
+- kernel-modules: add scsi_dh scsi_dh_rdac scsi_dh_emc (bug #527750)
+- dasd: use dasdconf.sh from s390utils (bug #533833)
+
+* Fri Nov 06 2009 Harald Hoyer <harald@redhat.com> 002-21
+- fix rd_DASD argument handling (bug #531720)
+- Resolves: rhbz#531720
+
+* Wed Nov 04 2009 Harald Hoyer <harald@redhat.com> 002-20
+- fix rd_DASD argument handling (bug #531720)
+- Resolves: rhbz#531720
+
+* Tue Nov 03 2009 Harald Hoyer <harald@redhat.com> 002-19
+- changed rd_DASD to rd_DASD_MOD (bug #531720)
+- Resolves: rhbz#531720
+
+* Tue Oct 27 2009 Harald Hoyer <harald@redhat.com> 002-18
+- renamed lvm/device-mapper udev rules according to upstream changes
+- fixed dracut search path issue
+
+* Mon Oct 26 2009 Harald Hoyer <harald@redhat.com> 002-17
+- load dm_mod module (bug #530540)
+
+* Fri Oct 09 2009 Jesse Keating <jkeating@redhat.com> - 002-16
+- Upgrade plymouth to Requires(pre) to make it show up before kernel
+
+* Thu Oct 08 2009 Harald Hoyer <harald@redhat.com> 002-15
+- s390 ccw: s/layer1/layer2/g
+
+* Thu Oct 08 2009 Harald Hoyer <harald@redhat.com> 002-14
+- add multinic support
+- add s390 zfcp support
+- add s390 network support
+
+* Wed Oct 07 2009 Harald Hoyer <harald@redhat.com> 002-13
+- fixed init=<command> handling
+- kill loginit if "rdinitdebug" specified
+- run dmsquash-live-root after udev has settled (bug #527514)
+
+* Tue Oct 06 2009 Harald Hoyer <harald@redhat.com> 002-12
+- add missing loginit helper
+- corrected dracut manpage
+
+* Thu Oct 01 2009 Harald Hoyer <harald@redhat.com> 002-11
+- fixed dracut-gencmdline for root=UUID or LABEL
+
+* Thu Oct 01 2009 Harald Hoyer <harald@redhat.com> 002-10
+- do not destroy assembled raid arrays if mdadm.conf present
+- mount /dev/shm 
+- let udevd not resolve group and user names
+- preserve timestamps of tools on initramfs generation
+- generate symlinks for binaries correctly
+- moved network from udev to initqueue
+- mount nfs3 with nfsvers=3 option and retry with nfsvers=2
+- fixed nbd initqueue-finished
+- improved debug output: specifying "rdinitdebug" now logs
+  to dmesg, console and /init.log
+- stop udev before killing it
+- add ghost /var/log/dracut.log
+- dmsquash: use info() and die() rather than echo
+- strip kernel modules which have no x bit set
+- redirect stdin, stdout, stderr all RW to /dev/console
+  so the user can use "less" to view /init.log and dmesg
+
+* Tue Sep 29 2009 Harald Hoyer <harald@redhat.com> 002-9
+- make install of new dm/lvm udev rules optionally
+- correct dasd module typo
+
+* Fri Sep 25 2009 Warren Togami <wtogami@redhat.com> 002-8
+- revert back to dracut-002-5 tarball 845dd502
+  lvm2 was reverted to pre-udev
+
+* Wed Sep 23 2009 Harald Hoyer <harald@redhat.com> 002-7
+- build with the correct tarball
+
+* Wed Sep 23 2009 Harald Hoyer <harald@redhat.com> 002-6
+- add new device mapper udev rules and dmeventd 
+  bug 525319, 525015
+
+* Wed Sep 23 2009 Warren Togami <wtogami@redaht.com> 002-5
+- Revert back to -3, Add umount back to initrd
+  This makes no functional difference to LiveCD.  See Bug #525319
+
+* Mon Sep 21 2009 Warren Togami <wtogami@redhat.com> 002-4
+- Fix LiveCD boot regression
+
+* Mon Sep 21 2009 Harald Hoyer <harald@redhat.com> 002-3
+- bail out if selinux policy could not be loaded and 
+  selinux=0 not specified on kernel command line 
+  (bug #524113)
+- set finished criteria for dmsquash live images
+
+* Fri Sep 18 2009 Harald Hoyer <harald@redhat.com> 002-2
+- do not cleanup dmraids
+- copy over lvm.conf
+
+* Thu Sep 17 2009 Harald Hoyer <harald@redhat.com> 002-1
+- version 002
+- set correct PATH
+- workaround for broken mdmon implementation
+
+* Wed Sep 16 2009 Harald Hoyer <harald@redhat.com> 001-12
+- removed lvm/mdraid/dmraid lock files
+- add missing ifname= files
+
+* Wed Sep 16 2009 Harald Hoyer <harald@redhat.com> 001-11
+- generate dracut-version during rpm build time
+
+* Tue Sep 15 2009 Harald Hoyer <harald@redhat.com> 001-10
+- add ifname= argument for persistent netdev names
+- new /initqueue-finished to check if the main loop can be left
+- copy mdadm.conf if --mdadmconf set or mdadmconf in dracut.conf
+
+* Wed Sep 09 2009 Harald Hoyer <harald@redhat.com> 001-9
+- added Requires: plymouth-scripts
+
+* Wed Sep 09 2009 Harald Hoyer <harald@redhat.com> 001-8
+- plymouth: use plymouth-populate-initrd
+- add add_drivers for dracut and dracut.conf
+- do not mount /proc and /selinux manually in selinux-load-policy
+
+* Wed Sep 09 2009 Harald Hoyer <harald@redhat.com> 001-7
+- add scsi_wait_scan to be sure everything was scanned
+
+* Tue Sep 08 2009 Harald Hoyer <harald@redhat.com> 001-6
+- fixed several problems with md raid containers
+- fixed selinux policy loading
+
+* Tue Sep 08 2009 Harald Hoyer <harald@redhat.com> 001-5
+- patch does not honor file modes, fixed them manually
+
+* Mon Sep 07 2009 Harald Hoyer <harald@redhat.com> 001-4
+- fixed mdraid for IMSM
+
+* Mon Sep 07 2009 Harald Hoyer <harald@redhat.com> 001-3
+- fixed bug, which prevents installing 61-persistent-storage.rules (bug #520109)
+
+* Thu Sep 03 2009 Harald Hoyer <harald@redhat.com> 001-2
+- fixed missing grep for md
+- reorder cleanup
+
+* Wed Sep 02 2009 Harald Hoyer <harald@redhat.com> 001-1
+- version 001
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Fri Aug 14 2009 Harald Hoyer <harald@redhat.com> 0.9-1
+- version 0.9
+
+* Thu Aug 06 2009 Harald Hoyer <harald@redhat.com> 0.8-1
+- version 0.8 
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Fri Jul 24 2009 Harald Hoyer <harald@redhat.com> 0.7-1
+- version 0.7
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Wed Jul 22 2009 Harald Hoyer <harald@redhat.com> 0.6-1
+- version 0.6
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Fri Jul 17 2009 Harald Hoyer <harald@redhat.com> 0.5-1
+- version 0.5
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Sat Jul 04 2009 Harald Hoyer <harald@redhat.com> 0.4-1
+- version 0.4
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Thu Jul 02 2009 Harald Hoyer <harald@redhat.com> 0.3-1
+- version 0.3
+- see http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut;a=blob_plain;f=NEWS
+
+* Wed Jul 01 2009 Harald Hoyer <harald@redhat.com> 0.2-1
+- version 0.2
+
+* Fri Jun 19 2009 Harald Hoyer <harald@redhat.com> 0.1-1
+- first release
+
+* Thu Dec 18 2008 Jeremy Katz <katzj@redhat.com> - 0.0-1
+- Initial build