From 4d2c9843f3ba5cceb681e5b03bdce2424b4fe3a3 Mon Sep 17 00:00:00 2001 From: Wilko Meyer Date: Mon, 16 Feb 2026 18:23:37 +0100 Subject: [PATCH] gnu: linux-libre-arm64-mnt-reform 6.18: Enable more FBCON options. * gnu/packages/linux.scm (linux-libre-arm64-mnt-reform-6.18): Add kernel configuration for FBCON rotation, CONFIG_FONTS, CONFIG_HIDRAW, and enable fonts. Change-Id: I62c7bd03e30d8cf8eb931e2999befb5acf8d1af2 --- gnu/packages/linux.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 05883471ab..b77c4fb116 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1708,6 +1708,15 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") ("CONFIG_NFT_FIB_IPV6" . m) ("CONFIG_NFT_BRIDGE_META" . m) ("CONFIG_NFT_BRIDGE_REJECT" . m) + ;; Provides support for FBCON options + ("CONFIG_FRAMEBUFFER_CONSOLE_ROTATION" . #true) + ("CONFIG_HIDRAW" . #true) + ("CONFIG_FONT_SUPPORT" . #true) + ("CONFIG_FONTS" . #true) + ("CONFIG_FONT_8x8" . #true) + ("CONFIG_FONT_8x16" . #true) + ("CONFIG_FONT_TER10x18" . #true) + ("CONFIG_FONT_TER16x32" . #true) ;; Provide support for USB tethering ("CONFIG_USB_NET_CDC_EEM" . m) ("CONFIG_USB_NET_RNDIS_HOST" . m)