From e35c784847087b65745674e9183ee1a51863c5e0 Mon Sep 17 00:00:00 2001 From: Nir Lichtman Date: Fri, 11 Jul 2025 21:04:38 +0300 Subject: [PATCH] Doc/gfx/libgfxinit.md: Fix file names in source code references The files were renamed in commit 7458629de369 (drivers/intel/gma: Move gfxinit into sub package). Change-Id: I41de759809122cdef8d4449fb6f564bbcd48bf9e Signed-off-by: Nir Lichtman Reviewed-on: https://review.coreboot.org/c/coreboot/+/88392 Reviewed-by: Elyes Haouas Tested-by: build bot (Jenkins) Reviewed-by: Nicholas Chin Reviewed-by: Paul Menzel --- Documentation/gfx/libgfxinit.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/gfx/libgfxinit.md b/Documentation/gfx/libgfxinit.md index 40f194a4eb..a9163b001f 100644 --- a/Documentation/gfx/libgfxinit.md +++ b/Documentation/gfx/libgfxinit.md @@ -22,14 +22,14 @@ GMA: Framebuffer Configuration *coreboot* supports two different framebuffer setups. The default enables the legacy VGA plane in textmode. Due to legacy hardware constraints, only the first found display is enabled in this mode. -(cf. `src/drivers/intel/gma/text_fb/gma.adb`). +(cf. `src/drivers/intel/gma/text_fb/gma-gfx_init.adb`). The second option sets up a high-resolution framebuffer with the native resolution of the display if only one is detected, or the smallest of all resolutions (per dimension) if multiple displays are detected. This option is selected by `CONFIG_FRAMEBUFFER_KEEP_VESA_MODE`. -(cf. `src/drivers/intel/gma/hires_fb/gma.adb`). +(cf. `src/drivers/intel/gma/hires_fb/gma-gfx_init.adb`). In any case, a smaller framebuffer is up-scaled to each display's native resolution while keeping aspect ratio.