add module i18n
[dracut.git] / README
blobab7cba966e8dd16048668e744b2d1987ef067572
1 Dracut
2 ------
3 Dracut is a new initramfs infrastructure.
5 Information about the initial goals and aims can be found at 
6 https://fedoraproject.org/wiki/Initrdrewrite 
8 Unlike existing initramfs's, this is an attempt at having as little as
9 possible hard-coded into the initramfs as possible.  The initramfs has
10 (basically) one purpose in life -- getting the rootfs mounted so that
11 we can transition to the real rootfs.  This is all driven off of
12 device availability.  Therefore, instead of scripts hard-coded to do
13 various things, we depend on udev to create device nodes for us and
14 then when we have the rootfs's device node, we mount and carry on.
15 This helps to keep the time required in the initramfs as little as
16 possible so that things like a 5 second boot aren't made impossible as
17 a result of the very existence of an initramfs.  It's likely that
18 we'll grow some hooks for running arbitrary commands in the flow of
19 the script, but it's worth trying to resist the urge as much as we can
20 as hooks are guaranteed to be the path to slow-down.
22 Most of the initrd generation functionality in dracut is provided by a bunch
23 of generator modules that are sourced by the main dracut script to install
24 specific functionality into the initrd.  They live in the modules.d 
25 subdirectory, and use functionality provided by dracut-functions to do their 
26 work.
28 Some general rules for writing modules:
29  * Use one of the inst family of functions to actually install files
30    on to the initrd.  They handle mangling the pathnames and (for binaries,
31    scripts, and kernel modules) installing dependencies as appropriate so
32    you do not have to.
33  * Scripts that end up on the initrd should be POSIX compliant. dracut
34    will try to use /bin/dash as /bin/sh for the initrd if it is available,
35    so you should install it on your system -- dash aims for strict POSIX
36    compliance to the extent possible.
37  * Hooks MUST be POSIX compliant -- they are sourced by the init script,
38    and having a bashism break your user's ability to boot really sucks.
39  * Generator modules should have a two digit numeric prefix -- they run in
40    ascending sort order. Anything in the 90-99 range is stuff that dracut
41    relies on, so try not to break those hooks.
42  * Hooks must have a .sh extension.
43  * Generator modules are described in more detail in README.modules.
44  * We have some breakpoints for debugging your hooks.  If you pass 'rdbreak'
45    as a kernel parameter, the initramfs will drop to a shell just before
46    switching to a new root. You can pass 'rdbreak=hookpoint', and the initramfs
47    will break just before hooks in that hookpoint run. 
49 Also, there is an attempt to keep things as distribution-agnostic as
50 possible.  Every distribution has their own tool here and it's not
51 something which is really interesting to have separate across them.
52 So contributions to help decrease the distro-dependencies are welcome.
54 Currently dracut lives on sourceforge.
56 Project Page:
57 https://sourceforge.net/projects/dracut/
59 Drop Harald Hoyer <harald@redhat.com> a mail, if you want to help with 
60 the documentation, git access, etc.
62 Git Repository:
63 http://dracut.git.sourceforge.net/
64 git://dracut.git.sourceforge.net/gitroot/dracut/dracut
66 Trac Instance:
67 http://apps.sourceforge.net/trac/dracut/ 
69 The git tree can be found at
70 git://dracut.git.sourceforge.net/gitroot/dracut/dracut for now.  See the TODO
71 file for things which still need to be done and HACKING for some
72 instructions on how to get started.  There is also a mailing list that
73 is being used for the discussion -- initramfs@vger.kernel.org.  It is
74 a typical vger list, send mail to majordomo@vger.kernel.org with body
75 of 'subscribe initramfs email@host.com' 
78 Licensed under the GPLv2