dracut the event driven initramfs infrastructure
Go to file
2009-01-05 15:50:44 -05:00
rules.d Support root on LUKS (dm-crypt) 2008-12-16 14:22:13 -05:00
COPYING And licensing... 2008-12-10 16:36:31 -05:00
dracut Now that module dependencies work, we don't have to list as much 2009-01-05 15:50:44 -05:00
dracut-functions Fix module dependency handling 2009-01-05 15:45:39 -05:00
dracut.spec Stop depending on nash to find the program interpreter; use eu-readelf instead 2009-01-05 12:47:36 -05:00
HACKING Update the documentation a bit for current status 2009-01-05 13:28:20 -05:00
init Basic support for loading SELinux from the initramfs 2009-01-05 13:18:50 -05:00
Makefile Add a makefile 2008-12-18 15:58:15 -05:00
README Now called dracut; add info about the mailing list 2008-12-17 13:16:12 -05:00
switch_root Various fixes to make things work; also listen to root= 2008-12-15 13:39:41 -05:00
TODO Add first pass of keyboard/console font setup 2009-01-05 14:40:34 -05:00

Dracut
------

This is the simple skeleton of a new initramfs infrastructure.
Information about our 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.

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.

The git tree can be found at
git://fedorapeople.org/~katzj/dracut.git for now.  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

Copyright 2008, Red Hat, Inc. -- Jeremy Katz <katzj@redhat.com>