-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.in.linux
More file actions
73 lines (47 loc) · 1.68 KB
/
Config.in.linux
File metadata and controls
73 lines (47 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#
# define Linux versions and patches
#
# Toolchain/Custom kernel headers series is selected before everything else
# latest release candidate for testing
if BR2_TOOLCHAIN_HEADERS_LATEST
config NABLA_LINUX_VERSION
string
default "7.1-rc5"
config NABLA_LINUX_PATCH
string
default "https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/7.1/patch-7.1-rc1-rt1.patch.xz"
endif # BR2_TOOLCHAIN_HEADERS_LATEST
# latest LTS kernel for 64-bit systems
if BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_18
config NABLA_LINUX_VERSION
string
default "6.18.33"
config NABLA_LINUX_PATCH
string
default "https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/6.18/patch-6.18.13-rt4.patch.xz"
endif # BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_18
# last LTS kernel for 64-bit systems
if BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12
config NABLA_LINUX_VERSION
string
default "6.12.91"
config NABLA_LINUX_PATCH
string
default "https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/6.12/patch-6.12.89-rt18.patch.xz"
endif # BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12
# older LTS kernel for 32-bit architectures
if BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10 && BR2_i386
config NABLA_LINUX_VERSION
string
default "5.10.257" if BR2_i386
config NABLA_LINUX_PATCH
string
default "https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/5.10/patch-5.10.256-rt152.patch.xz"
endif # BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10
# CIP kernel to eventually trplace Linux kernel 5.10.y
# this needs Buildroot linux/Config.in to be patched
if BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION
config NABLA_LINUX_VERSION
string
default "5.10.254-cip72-rt32"
endif # BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION