From 2d53395c039ade8981051d486e42af5250a0c556 Mon Sep 17 00:00:00 2001 From: MrChromebox Date: Sun, 18 Oct 2020 09:11:42 -0500 Subject: [PATCH] config/coreboot-librem_15v4: set kernel video mode to 1080p (#857) Set the kernel video mode for the internal display to 1080p, as the native panel resolution of 2160p is difficult to read. A recent update to fbwhiptail allows the GUI to make use of the scaled resolution as well, provided it is set via kernel param. Signed-off-by: Matt DeVillier --- config/coreboot-librem_15v4.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/coreboot-librem_15v4.config b/config/coreboot-librem_15v4.config index 36c0e95b..a2afb1ce 100644 --- a/config/coreboot-librem_15v4.config +++ b/config/coreboot-librem_15v4.config @@ -27,5 +27,5 @@ CONFIG_FSP_M_XIP=y CONFIG_DEFAULT_CONSOLE_LOGLEVEL_8=y CONFIG_PAYLOAD_LINUX=y CONFIG_PAYLOAD_FILE="../../build/librem_15v4/bzImage" -CONFIG_LINUX_COMMAND_LINE="intel_iommu=igfx_off quiet loglevel=3" +CONFIG_LINUX_COMMAND_LINE="intel_iommu=igfx_off quiet loglevel=3 video=eDP-1:1920x1080" CONFIG_LINUX_INITRD="../../build/librem_15v4/initrd.cpio.xz"