mirror of
https://git.sr.ht/~nabijaczleweli/tzpfms
synced 2025-04-19 09:47:35 +03:00
27 lines
941 B
Bash
Executable File
27 lines
941 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
#include "../install.h"
|
|
|
|
|
|
[ "$1" = "prereqs" ] && { echo zfs; exit; }
|
|
. /usr/share/initramfs-tools/hook-functions
|
|
|
|
|
|
# Bit of a hack: replace zfs-intramfs' decrypt_fs() in /scripts/zfs with our version that understands tzpfms datasets,
|
|
# which should be compatible with other hooks doing the same thing
|
|
[ "${verbose:-n}" = "y" ] && echo "Patching /scripts/zfs"
|
|
sed -Ei 's/^decrypt_fs\(\)/__tzpfms__&/' "$DESTDIR/scripts/zfs"
|
|
cat /usr/share/tzpfms/initramfs-tools-zfs-patch.sh >> "$DESTDIR/scripts/zfs"
|
|
|
|
|
|
for x in zfs-tpm-list zfs-tpm2-load-key tpm2_dictionarylockout zfs-tpm1x-load-key tpm_resetdalock tcsd $(find /usr/lib -name 'libtss2-tcti*.so*'); do # TODO: there's got to be a better way™!
|
|
xloc="$(command -v "$x")" && copy_exec "$xloc"
|
|
done
|
|
|
|
INSTALL_TPM1X{, DESTDIR, copy_file rule, copy_file config, copy_file state, copy_exec}
|
|
|
|
|
|
copy_modules_dir 'kernel/drivers/char/tpm'
|