From 8b0b672674e70c5631873060a64748ebe8aab056 Mon Sep 17 00:00:00 2001 From: Dorian Date: Mon, 13 Jul 2026 22:18:17 +0100 Subject: [PATCH] =?UTF-8?q?revert(iso):=20drop=20i915=20kernel=20params=20?= =?UTF-8?q?=E2=80=94=20kiosk=20oversize=20was=20the=20window-size=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The X250 symptom was the UI rendered at a hardcoded 1920x1080 and clipped on the 1366x768 panel (fixed in 7e996d6), not eDP corruption. Keep RC2 minimal: no speculative kernel params. Co-Authored-By: Claude Fable 5 --- image-recipe/_archived/build-auto-installer-iso.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/image-recipe/_archived/build-auto-installer-iso.sh b/image-recipe/_archived/build-auto-installer-iso.sh index c793e31c..9e88e2bf 100755 --- a/image-recipe/_archived/build-auto-installer-iso.sh +++ b/image-recipe/_archived/build-auto-installer-iso.sh @@ -2979,10 +2979,7 @@ if [ -d "$BOOT_MEDIA/archipelago/plymouth-theme" ]; then ln -sf /usr/share/plymouth/themes/archipelago/archipelago.plymouth \ /mnt/target/etc/alternatives/default.plymouth 2>/dev/null || true # Configure clean boot: splash, suppress kernel noise, hide cursor - # i915.enable_ips/psr/fbc=0: Broadwell-era eDP panels (e.g. ThinkPad X250 - # HD 5500) show horizontal corruption bands with these power features on; - # a kiosk box gains nothing from them. Harmless no-ops on non-Intel. - sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT=".*"/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force i915.enable_ips=0 i915.enable_psr=0 i915.enable_fbc=0"/' \ + sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT=".*"/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force"/' \ /mnt/target/etc/default/grub 2>/dev/null || true echo " Installed Archipelago Plymouth theme on target" fi @@ -3482,7 +3479,7 @@ else fi menuentry "Install Archipelago" --hotkey=i { - linux ($root)/live/vmlinuz boot=live components quiet splash loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force i915.enable_ips=0 i915.enable_psr=0 i915.enable_fbc=0 console=ttyS0,115200 console=tty0 + linux ($root)/live/vmlinuz boot=live components quiet splash loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force console=ttyS0,115200 console=tty0 initrd ($root)/live/initrd.img } @@ -3550,7 +3547,7 @@ DEFAULT install LABEL install MENU LABEL Install Archipelago KERNEL /live/vmlinuz - APPEND initrd=/live/initrd.img boot=live components quiet loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force i915.enable_ips=0 i915.enable_psr=0 i915.enable_fbc=0 + APPEND initrd=/live/initrd.img boot=live components quiet loglevel=0 rd.systemd.show_status=false vt.global_cursor_default=0 acpi=force MENU DEFAULT LABEL install-verbose