Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meson_options.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
option('user', type: 'string', value: 'clevis', description: 'Unprivileged user for secure clevis operations')
option('group', type: 'string', value: 'clevis', description: 'Unprivileged group for secure clevis operations')
option('tpm1', type: 'feature', value: 'auto', description: 'Enable TPM 1.2 pin support')
option('pkcs11', type: 'feature', value: 'auto', description: 'Enable PKCS11 pin support')
4 changes: 2 additions & 2 deletions src/pins/pkcs11/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pcscd = find_program('pcscd', required: false)
pkcs11tool = find_program('pkcs11-tool', required: false)
pcscd = find_program('pcscd', required: get_option('pkcs11'))
pkcs11tool = find_program('pkcs11-tool', required: get_option('pkcs11'))
pcscd_disable_polkit = false
git = find_program('git', required: false)

Expand Down
Loading