diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-10-31 23:33:36 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-03 10:46:17 +0100 |
commit | a07864a4fe8c7330ca0ccdc0213ee8e4f7e3721e (patch) | |
tree | 2aa1779ac0bf55b9521f3753977faffca2fa5f30 /src/boot/meson.build | |
parent | openssl-util: Query engine/provider pin via ask-password (diff) | |
download | systemd-a07864a4fe8c7330ca0ccdc0213ee8e4f7e3721e.tar.xz systemd-a07864a4fe8c7330ca0ccdc0213ee8e4f7e3721e.zip |
bootctl: Add --secure-boot-auto-enroll
When specified, bootctl install will also set up secure boot
auto-enrollment. For now, We sign all variables using the same
certificate and key pair.
Diffstat (limited to 'src/boot/meson.build')
-rw-r--r-- | src/boot/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/meson.build b/src/boot/meson.build index 55b9bd6294..9c28c623d4 100644 --- a/src/boot/meson.build +++ b/src/boot/meson.build @@ -30,7 +30,7 @@ executables += [ ], 'sources' : bootctl_sources, 'link_with' : boot_link_with, - 'dependencies' : libblkid, + 'dependencies' : [libblkid, libopenssl], }, libexec_template + { 'name' : 'systemd-bless-boot', |