From 8157685d04cf146676cf9e8e1182295f34495e2f Mon Sep 17 00:00:00 2001 From: h8d13 Date: Thu, 13 Aug 2026 02:24:39 +0200 Subject: [PATCH] feat(kernels): add RT variants from upstream (#4711) * feat(kernels): add `RT` variants from upstream * https://archlinux.org/packages/?sort=&q=linux-rt Signed-off-by: h8d13 * chore(fmt): use tab Signed-off-by: h8d13 * fixup! feat(kernels): add `RT` variants from upstream --------- Signed-off-by: h8d13 --- archinstall/lib/models/package_types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/models/package_types.py b/archinstall/lib/models/package_types.py index e314c30a..fa44668b 100644 --- a/archinstall/lib/models/package_types.py +++ b/archinstall/lib/models/package_types.py @@ -7,6 +7,8 @@ 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