From: Luca Boccassi Date: Wed, 18 Jan 2023 01:57:16 +0000 (+0000) Subject: enable support for secure boot on qemu arm64/amd64 X-Git-Tag: archive/raspbian/2024.01+dfsg-5+rpi1~3^2^2^2^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=70abd90192fcf45883985f8f51097dec4e5b4742;p=u-boot.git enable support for secure boot on qemu arm64/amd64 Secure boot is now supported upstream in EFI mode. It is disabled by default, and can be enabled by loading keys from the console: https://u-boot.readthedocs.io/en/latest/develop/uefi/uefi.html#configuring-uefi-secure-boot Gbp-Pq: Topic qemu Gbp-Pq: Name efi-secure-boot.patch --- diff --git a/configs/qemu-x86_64_defconfig b/configs/qemu-x86_64_defconfig index 8433b5734..2d1f3df35 100644 --- a/configs/qemu-x86_64_defconfig +++ b/configs/qemu-x86_64_defconfig @@ -78,3 +78,5 @@ CONFIG_FRAMEBUFFER_VESA_MODE=0x144 CONFIG_CONSOLE_SCROLL_LINES=5 CONFIG_GENERATE_ACPI_TABLE=y # CONFIG_GZIP is not set +CONFIG_EFI_SECURE_BOOT=y +CONFIG_EFI_SIGNATURE_SUPPORT=y diff --git a/configs/qemu_arm64_defconfig b/configs/qemu_arm64_defconfig index 4123338b8..b300da384 100644 --- a/configs/qemu_arm64_defconfig +++ b/configs/qemu_arm64_defconfig @@ -68,3 +68,5 @@ CONFIG_USB=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_PCI=y CONFIG_TPM=y +CONFIG_EFI_SECURE_BOOT=y +CONFIG_EFI_SIGNATURE_SUPPORT=y