dracut the event driven initramfs infrastructure
Go to file
2014-07-03 15:04:17 +02:00
dracut.conf.d default to hostonly_cmdline=yes, if hostonly 2014-06-30 12:03:12 +02:00
install install: add -H flag for install 2014-06-25 11:42:53 +02:00
modules.d lvm:module-setup.sh: check for existance of 69-dm-lvm-metad.rules 2014-07-03 15:04:17 +02:00
skipcpio skipcpio: fixed signatured check 2014-01-29 08:35:47 +01:00
test TEST-15-BTRFSRAID: install /etc/os-release 2014-06-30 12:03:12 +02:00
.gitignore
.mailmap AUTHORS: update 2014-03-06 09:55:19 +01:00
50-dracut.install use ${var:+val} rather than ${var+val} 2013-08-22 11:24:01 +02:00
51-dracut-rescue-postinst.sh
51-dracut-rescue.install 51-dracut-rescue.install: fixed rescue image creation 2013-08-07 10:33:15 +02:00
AUTHORS AUTHORS: update 2014-03-06 09:55:19 +01:00
configure
COPYING
dracut-bash-completion.sh Remove shebang from shell-completion files 2013-12-05 15:13:29 +01:00
dracut-catimages.8.asc
dracut-catimages.sh
dracut-functions.sh install: add -H flag for install 2014-06-25 11:42:53 +02:00
dracut-initramfs-restore.sh dracut-initramfs-restore: fix unpacking with early microcode 2014-03-20 13:18:13 +01:00
dracut-logger.sh dracut-logger.sh: systemd-cat only understands prio 0-7 2014-01-22 11:48:45 +01:00
dracut.8.asc add default values in fstab_lines 2014-02-28 12:10:47 +01:00
dracut.asc documentation: line wrap 2014-01-13 09:51:04 +01:00
dracut.bootup.7.asc documentation: line wrap 2014-01-13 09:51:04 +01:00
dracut.cmdline.7.asc Add "rd.cmdline=ask" kernel command line parameter 2014-06-30 12:03:12 +02:00
dracut.conf
dracut.conf.5.asc Add flag to toggle hostonly cmdline storing in the initramfs 2014-02-26 15:01:55 +01:00
dracut.css Doc: cleanup, extend and split and reuse 2013-10-08 15:13:12 +02:00
dracut.logrotate
dracut.modules.7.asc documentation: line wrap 2014-01-13 09:51:04 +01:00
dracut.png
dracut.sh default to hostonly_cmdline=yes, if hostonly 2014-06-30 12:03:12 +02:00
dracut.spec dracut.spec: add skipcpio 2014-01-28 12:21:33 +01:00
dracut.svg
dracut.usage.asc Patch for Manpage 2014-02-26 14:55:54 +01:00
git2spec.pl
HACKING
lsinitrd-bash-completion.sh Remove shebang from shell-completion files 2013-12-05 15:13:29 +01:00
lsinitrd.1.asc
lsinitrd.sh lsinird: Adding option "-m|--mod" to list dracut modules in the image 2014-06-20 14:34:30 +02:00
Makefile Makefile: add debugtestimage and debughostimage targets 2014-06-25 11:43:44 +02:00
mkinitrd-dracut.sh mkinitrd-dracut.sh: removed trailing space in comment 2013-10-07 17:25:58 +02:00
mkinitrd-suse.8.asc mkinitrd-suse.8.asc: Add manpage for SUSE compat mkinitrd 2013-12-05 15:13:29 +01:00
mkinitrd-suse.sh mkinitrd-suse: Add SUSE compability wrapper for dracut 2013-12-05 15:13:29 +01:00
mkinitrd.8.asc documentation: line wrap 2014-01-13 09:51:04 +01:00
NEWS NEWS: update for version 038 2014-06-30 12:03:12 +02:00
PKGBUILD
profile.py
README
README.generic
README.kernel
README.modules
README.testsuite
TODO TODO: update 2014-01-22 11:27:09 +01:00

dracut
------
dracut is a new initramfs infrastructure.

Information about the initial goals and aims can be found at
https://fedoraproject.org/wiki/Initrdrewrite

Unlike existing initramfs's, this is an attempt at having as little as
possible hard-coded into the initramfs as possible.  The initramfs has
(basically) one purpose in life -- getting the rootfs mounted so that
we can transition to the real rootfs.  This is all driven off of
device availability.  Therefore, instead of scripts hard-coded to do
various things, we depend on udev to create device nodes for us and
then when we have the rootfs's device node, we mount and carry on.
This helps to keep the time required in the initramfs as little as
possible so that things like a 5 second boot aren't made impossible as
a result of the very existence of an initramfs.  It's likely that
we'll grow some hooks for running arbitrary commands in the flow of
the script, but it's worth trying to resist the urge as much as we can
as hooks are guaranteed to be the path to slow-down.

Most of the initramfs generation functionality in dracut is provided by a bunch
of generator modules that are sourced by the main dracut script to install
specific functionality into the initramfs.  They live in the modules.d
subdirectory, and use functionality provided by dracut-functions to do their
work.

Some general rules for writing modules:
 * Use one of the inst family of functions to actually install files
   on to the initramfs.  They handle mangling the pathnames and (for binaries,
   scripts, and kernel modules) installing dependencies as appropriate so
   you do not have to.
 * Scripts that end up on the initramfs should be POSIX compliant. dracut
   will try to use /bin/dash as /bin/sh for the initramfs if it is available,
   so you should install it on your system -- dash aims for strict POSIX
   compliance to the extent possible.
 * Hooks MUST be POSIX compliant -- they are sourced by the init script,
   and having a bashism break your user's ability to boot really sucks.
 * Generator modules should have a two digit numeric prefix -- they run in
   ascending sort order. Anything in the 90-99 range is stuff that dracut
   relies on, so try not to break those hooks.
 * Hooks must have a .sh extension.
 * Generator modules are described in more detail in README.modules.
 * We have some breakpoints for debugging your hooks.  If you pass 'rdbreak'
   as a kernel parameter, the initramfs will drop to a shell just before
   switching to a new root. You can pass 'rdbreak=hookpoint', and the initramfs
   will break just before hooks in that hookpoint run.

Also, there is an attempt to keep things as distribution-agnostic as
possible.  Every distribution has their own tool here and it's not
something which is really interesting to have separate across them.
So contributions to help decrease the distro-dependencies are welcome.

Currently dracut lives on kernel.org.

The tarballs can be found here:
	http://www.kernel.org/pub/linux/utils/boot/dracut/
	ftp://ftp.kernel.org/pub/linux/utils/boot/dracut/

Git:
	git://git.kernel.org/pub/scm/boot/dracut/dracut.git
	http://git.kernel.org/pub/scm/boot/dracut/dracut.git
	https://git.kernel.org/pub/scm/boot/dracut/dracut.git

	git://github.com/haraldh/dracut.git

	git://dracut.git.sourceforge.net/gitroot/dracut/dracut

Git Web:
	http://git.kernel.org/?p=boot/dracut/dracut.git

	https://haraldh@github.com/haraldh/dracut.git

	http://dracut.git.sourceforge.net/git/gitweb.cgi?p=dracut/dracut

Git Web RSS Feed:
	http://git.kernel.org/?p=boot/dracut/dracut.git;a=rss

Project Page:
	http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html

Project Wiki:
	http://dracut.wiki.kernel.org

See the TODO file for things which still need to be done and HACKING for
some instructions on how to get started.  There is also a mailing list
that is being used for the discussion -- initramfs@vger.kernel.org.
It is a typical vger list, send mail to majordomo@vger.kernel.org with body
of 'subscribe initramfs email@host.com'


Licensed under the GPLv2