Skip to content

Commit

Permalink
feat(pkcs11): introducing the pkcs11 module
Browse files Browse the repository at this point in the history
This module allows unlocking of an encrypted filesystem using pkcs11.
  • Loading branch information
johannbg committed Feb 2, 2022
1 parent 56f4fb6 commit 83ea8cf
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions modules.d/91pkcs11/module-setup.sh
@@ -0,0 +1,35 @@
#!/bin/bash
# This file is part of dracut.
# SPDX-License-Identifier: GPL-2.0-or-later

# Prerequisite check(s) for module.
check() {

# Return 255 to only include the module, if another module requires it.
return 255

}

# Module dependency requirements.
depends() {

# This module has external dependency on other module(s).
echo systemd-udevd
# Return 0 to include the dependent module(s) in the initramfs.
return 0

}

# Install the required file(s) and directories for the module in the initramfs.
install() {

# Install library file(s)
_arch=${DRACUT_ARCH:-$(uname -m)}
inst_libdir_file \
{"tls/$_arch/",tls/,"$_arch/",}"libtasn1.so.*" \
{"tls/$_arch/",tls/,"$_arch/",}"libffi.so.*" \
{"tls/$_arch/",tls/,"$_arch/",}"libp11-kit.so.*" \
{"tls/$_arch/",tls/,"$_arch/",}"libcryptsetup.so.*" \
{"tls/$_arch/",tls/,"$_arch/",}"/cryptsetup/libcryptsetup-token-systemd-pkcs11.so.*"

This comment has been minimized.

Copy link
@innovara

innovara Oct 26, 2023

Contributor

@johannbg: the file in Fedora is cryptsetup/libcryptsetup-token-systemd-pkcs11.so hence it's not included because it doesn't match .so.* (note the dote before the *)


}

0 comments on commit 83ea8cf

Please sign in to comment.