feat: Secure boot option (#289)

This commit is contained in:
Kroese 2023-12-29 19:30:27 +01:00 committed by GitHub
parent abcd65208e
commit 0fea4ff210
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,9 @@ case "${BOOT_MODE,,}" in
uefi)
BOOT_OPTS="-bios /usr/share/OVMF/OVMF_CODE_4M.fd"
;;
secure)
BOOT_OPTS="-bios /usr/share/OVMF/OVMF_CODE_4M.secboot.fd"
;;
legacy)
BOOT_OPTS=""
;;