File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,17 @@ type KernelVersion string
88const (
99 // Kernel versions from Kernel linux build
1010 Kernel_202511182 KernelVersion = "ch-6.12.8-kernel-1-202511182"
11+ Kernel_20251211 KernelVersion = "ch-6.12.8-kernel-2-20251211"
1112)
1213
1314var (
1415 // DefaultKernelVersion is the kernel version used for new instances
15- DefaultKernelVersion = Kernel_202511182
16+ DefaultKernelVersion = Kernel_20251211
1617
1718 // SupportedKernelVersions lists all supported kernel versions
1819 SupportedKernelVersions = []KernelVersion {
1920 Kernel_202511182 ,
21+ Kernel_20251211 ,
2022 // Add future versions here
2123 }
2224)
@@ -27,6 +29,10 @@ var KernelDownloadURLs = map[KernelVersion]map[string]string{
2729 "x86_64" : "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-1-202511182/vmlinux-x86_64" ,
2830 "aarch64" : "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-1-202511182/Image-arm64" ,
2931 },
32+ Kernel_20251211 : {
33+ "x86_64" : "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-2-20251211/vmlinux-x86_64" ,
34+ "aarch64" : "https://github.com/onkernel/linux/releases/download/ch-6.12.8-kernel-2-20251211/Image-arm64" ,
35+ },
3036 // Add future versions here
3137}
3238
@@ -38,4 +44,3 @@ func GetArch() string {
3844 }
3945 return arch
4046}
41-
You can’t perform that action at this time.
0 commit comments