Go to file
Martin Wilck a247d2bc0d fix(multipathd.service): adapt to upstream multipath-tools unit file
In the long run, it's desirable to be able to drop dracut's copy of
multipathd.service and use the upstream one from multipath-tools instead.
This patch makes a step in that direction.

With these changes, the only remaining difference is the support for
rd.multipath=0 and rd_NO_MULTIPATH, which must obviously be ignored in the
upstream unit.

The modifications in this patch are minor and will have no effect in the
initramfs.
2022-02-02 22:47:25 +00:00
.github ci: remove Fedora 33 container 2021-11-25 09:23:58 +01:00
docs chore: change my email address 2021-10-13 09:07:39 +02:00
dracut.conf.d ci(suse.conf.example): change default compression option for SUSE 2021-09-11 06:44:40 +00:00
install.d chore(tree): move kernel install files into its own directory 2021-05-04 09:24:16 +02:00
man feat(dracut.sh): add "--enhanced-cpio" option for calling dracut-cpio 2021-11-24 11:14:54 +01:00
modules.d fix(multipathd.service): adapt to upstream multipath-tools unit file 2022-02-02 22:47:25 +00:00
pkgbuild feat(spec): add systemd-integritysetup module 2022-01-14 14:17:18 +00:00
shell-completion/bash feat(dracut.sh): add "--enhanced-cpio" option for calling dracut-cpio 2021-11-24 11:14:54 +01:00
src fix(cpio): write zeros instead of seek for padding and alignment 2021-12-10 08:06:40 -05:00
test ci(TEST-63-DRACUT-CPIO): kernel extraction tests for dracut-cpio 2021-11-24 11:14:54 +01:00
tools test: don't use `-cpu max` in GH Actions 2021-11-15 11:37:22 +00:00
.astylerc style: use astyle instead of indent 2021-03-15 15:37:08 +01:00
.dir-locals.el fix: set vimrc and emacs indention according to .editorconfig 2021-03-13 20:10:43 +01:00
.editorconfig feat: customize .editorconfig according to shfmt 2021-03-13 20:10:43 +01:00
.gitignore chore(.gitignore): update src and man paths 2021-10-02 06:57:28 +00:00
.kateconfig
.kateproject kate config 2016-04-15 10:27:48 +02:00
.mailmap chore: change my email address 2021-10-13 09:07:39 +02:00
.packit.yml fix(packit): downstream has renamed the master branch to main 2021-05-14 15:50:38 +02:00
.shellcheckrc fix: shellcheck 0.7.2 2021-05-05 14:55:30 +02:00
.vimrc fix: set vimrc and emacs indention according to .editorconfig 2021-03-13 20:10:43 +01:00
AUTHORS docs: update NEWS.md and AUTHORS 2021-05-27 14:34:19 +02:00
COPYING
Makefile feat(Makefile): cargo wrapper for dracut-cpio build 2021-11-24 11:14:54 +01:00
NEWS.md docs: update NEWS.md and AUTHORS 2021-05-27 14:34:19 +02:00
README.md docs: fix CI badges in README 2021-02-10 14:39:11 +01:00
configure feat(Makefile): cargo wrapper for dracut-cpio build 2021-11-24 11:14:54 +01:00
dracut-catimages.sh style: shfmt reformat 2021-03-13 20:10:43 +01:00
dracut-functions.sh fix(dracut-functions.sh): get block device driver if in a virtual subsystem 2021-11-24 11:15:25 +01:00
dracut-init.sh feat: support ZSTD-compressed kernel modules 2021-05-04 15:55:19 +00:00
dracut-initramfs-restore.sh fix(dracut-initramfs-restore.sh): add missing default paths 2021-12-11 10:58:18 -05:00
dracut-logger.sh fix(dracut-logger.sh): double dash trigger unknown logger warnings during run 2021-04-15 12:58:49 +02:00
dracut.conf
dracut.sh fix(dracut.sh): do not ignore invalid config file or dir path 2021-12-11 15:58:50 +00:00
lsinitrd.sh fix(lsinitrd.sh): shellcheck for lsinitrd.sh 2021-03-30 12:59:06 +02:00

README.md

dracut

dracut is an event driven initramfs infrastructure.

Contributor Covenant Fedora-32 Fedora-33 Fedora-latest

dracut (the tool) is used to create an initramfs image by copying tools and files from an installed system and combining it with the dracut framework, usually found in /usr/lib/dracut/modules.d.

Unlike other implementations, dracut hard-codes as little as possible into the initramfs. 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.

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.

Currently dracut lives on github.com and 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: https://github.com/dracutdevs/dracut.git http://git.kernel.org/?p=boot/dracut/dracut.git

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

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

See the github issue tracker for things which still need to be done and HACKING.md 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