From 2993e98dd6c4f68e988ac2918d253a3cab1603bb Mon Sep 17 00:00:00 2001 From: h8d13 Date: Wed, 12 Aug 2026 13:28:03 +0200 Subject: [PATCH] feat(kernels): add `RT` variants from upstream * https://archlinux.org/packages/?sort=&q=linux-rt Signed-off-by: h8d13 --- archinstall/lib/models/package_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/archinstall/lib/models/package_types.py b/archinstall/lib/models/package_types.py index e314c30a..eae170fe 100644 --- a/archinstall/lib/models/package_types.py +++ b/archinstall/lib/models/package_types.py @@ -7,6 +7,7 @@ class Kernel(StrEnum): LINUX_LTS = 'linux-lts' LINUX_ZEN = 'linux-zen' LINUX_HARDENED = 'linux-hardened' - + LINUX_RT = 'linux-rt' + LINUX_RT_LTS = 'linux-rt-lts' DEFAULT_KERNEL: Final = Kernel.LINUX