From dd38dfb3170401207657597cebaf400339402176 Mon Sep 17 00:00:00 2001 From: Elias Bakken Date: Sat, 8 Aug 2026 22:34:38 +0200 Subject: [PATCH] rotate-screen: recognize Debian 13 for the weston transform update update_weston() only matched release 10, 11, or 12 before writing transform= into weston.ini, so it silently did nothing on Debian 13 (Rebuild moved to trixie this cycle) - EXTERNAL_SCREEN_ROTATION was being saved but never actually applied to the touchscreen. Verified on real hardware: applying rotation=270 now correctly sets transform=rotate-90 and the Toggle UI displays in the right orientation after a weston/toggle restart. Co-Authored-By: Claude Sonnet 5 --- bin/prod/rotate-screen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/prod/rotate-screen b/bin/prod/rotate-screen index 822f8e4..a6d94df 100755 --- a/bin/prod/rotate-screen +++ b/bin/prod/rotate-screen @@ -60,7 +60,7 @@ update_weston(){ echo "Misssig file: ${CONFIG_FILE}" else case "$RELEASE" in - 11 | 12) + 11 | 12 | 13) sed -i "s/transform.*/transform=${ROT_WESTON_11}/" "${CONFIG_FILE}" ;; 10)