From fe70cfd507e12ebe384dbf907b5baa0388a15e6c Mon Sep 17 00:00:00 2001 From: Luc Date: Sat, 9 Aug 2025 10:25:10 +0200 Subject: [PATCH 1/2] README.md: added installation --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b668e21..1763dfa 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ # zlevis-dracut -A dracut module that implements automatic decryption of a `ZFS` root pool in the `initramfs` with `zlevis`. +A [dracut](https://dracut-ng.github.io/dracut-ng/) module that implements automatic decryption of a `ZFS` root pool in the `initramfs` with `zlevis`. + +## Installation + +`zlevis-dracut` can be installed with `meson`, after cloning the repository, setup the build directory: + +``` +$ meson setup builddir +``` + +> Using the `--reconfigure` flag will reconfigure the build directory. + +Installation of the `zlevis-dracut` module is now performed with: + +``` +# meson install -C builddir +``` From 09baeaaf98df960e3db83b9d9479668b35a840df Mon Sep 17 00:00:00 2001 From: Luc Date: Sat, 9 Aug 2025 10:25:28 +0200 Subject: [PATCH 2/2] meson.build: removed line --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c54f84c..63b70ef 100644 --- a/meson.build +++ b/meson.build @@ -11,4 +11,4 @@ bins = [] subdir('src') # Install bins in module dir -install_data(bins, install_dir: modules_dir) +install_data(bins, install_dir: modules_dir) \ No newline at end of file