From nobody Sat Oct 4 21:01:20 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E3670288C96; Tue, 12 Aug 2025 13:54:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755006874; cv=none; b=phUF6k1DZGqPm9yL4a1ft9/0KMyfhSSR3ATF9hKdip9Fhr2vypFoiBVYOR9HRon+lwsoCoCbJNZrzM/C5aq/Y1vsbFRwuhEEbi8TK4Vska4SSb2oU0r83fFFel+x8dKvVl14OcnBz0UsqQ21w6/QkEVK+H24Oiazun3/pbUudgs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755006874; c=relaxed/simple; bh=gJrxZsuCamEst24Kf32qx2GybTeNB2tS7boJnCo8/uI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=C8ceEFE1h6dZWF9VLBeQWnoCgQt0fs/KhmytEVPMobL8Yw3y/iKcSWN8MC4NHt4RkfoXqfYd4ci1BeQDgp8JuFGhNtnYLZDKyLtymDYJdzxtvCzi7ZtA7WJFMazkVHhhpS2jJ0EM6rc1LUO2b1L2Zg5n9OMS2GUEuMC6Bvh+x5w= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5E33EC4CEFA; Tue, 12 Aug 2025 13:54:33 +0000 (UTC) From: Geert Uytterhoeven To: Ard Biesheuvel , Gerd Hoffmann Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] efi: Explain OVMF acronym in OVMF_DEBUG_LOG help text Date: Tue, 12 Aug 2025 15:54:29 +0200 Message-ID: X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" People not very intimate with EFI may not know the meaning of the OVMF acronym. Write it in full, to help users with making good decisions when configuring their kernels. Fixes: f393a761763c5427 ("efi: add ovmf debug log driver") Signed-off-by: Geert Uytterhoeven Acked-by: Gerd Hoffmann Reviewed-by: Richard Lyu --- drivers/firmware/efi/Kconfig | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/firmware/efi/Kconfig b/drivers/firmware/efi/Kconfig index d528c94c5859b5fa..29e0729299f5bd92 100644 --- a/drivers/firmware/efi/Kconfig +++ b/drivers/firmware/efi/Kconfig @@ -267,9 +267,10 @@ config OVMF_DEBUG_LOG bool "Expose OVMF firmware debug log via sysfs" depends on EFI help - Recent OVMF versions (edk2-stable202508 + newer) can write - their debug log to a memory buffer. This driver exposes the - log content via sysfs (/sys/firmware/efi/ovmf_debug_log). + Recent versions of the Open Virtual Machine Firmware + (edk2-stable202508 + newer) can write their debug log to a memory + buffer. This driver exposes the log content via sysfs + (/sys/firmware/efi/ovmf_debug_log). =20 config UNACCEPTED_MEMORY bool --=20 2.43.0