fixup! feat(kernels): add `RT` variants from upstream
This commit is contained in:
parent
735f6cd2f1
commit
5c62da2708
|
|
@ -3,11 +3,12 @@ from typing import Final
|
|||
|
||||
|
||||
class Kernel(StrEnum):
|
||||
LINUX = auto()
|
||||
LINUX_LTS = 'linux-lts'
|
||||
LINUX_ZEN = 'linux-zen'
|
||||
LINUX_HARDENED = 'linux-hardened'
|
||||
LINUX_RT = 'linux-rt'
|
||||
LINUX_RT_LTS = 'linux-rt-lts'
|
||||
LINUX = auto()
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue