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 <hadean-eon-dev@proton.me>

* chore(fmt): use tab

Signed-off-by: h8d13 <hadean-eon-dev@proton.me>

* fixup! feat(kernels): add `RT` variants from upstream

---------

Signed-off-by: h8d13 <hadean-eon-dev@proton.me>
This commit is contained in:
h8d13 2026-08-13 02:24:39 +02:00 committed by GitHub
parent 3ffa1a98a0
commit 8157685d04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -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