From: Gerd Hoffmann Date: Tue, 25 Feb 2025 16:30:20 +0000 (+0100) Subject: hw/uefi: add UEFI_VARS to Kconfig X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e8371973d7e651f9d7b82100cb9745fd2795d722;p=qemu.git hw/uefi: add UEFI_VARS to Kconfig Add UEFI_VARS config option, enable by default for x86_64 and aarch64. Signed-off-by: Gerd Hoffmann Message-ID: <20250225163031.1409078-17-kraxel@redhat.com> --- diff --git a/hw/Kconfig b/hw/Kconfig index 1b4e9bb07f..c4dfe2e7af 100644 --- a/hw/Kconfig +++ b/hw/Kconfig @@ -37,6 +37,7 @@ source smbios/Kconfig source ssi/Kconfig source timer/Kconfig source tpm/Kconfig +source uefi/Kconfig source ufs/Kconfig source usb/Kconfig source virtio/Kconfig diff --git a/hw/uefi/Kconfig b/hw/uefi/Kconfig new file mode 100644 index 0000000000..ca6c2bc46a --- /dev/null +++ b/hw/uefi/Kconfig @@ -0,0 +1,3 @@ +config UEFI_VARS + bool + default y if X86_64 || AARCH64