Skip to content

Commit 380e365

Browse files
committed
guix: switch to 6.1 kernel headers over 5.15
6.1 is the current longterm release: https://kernel.org/. Note that using an older version of the kernel headers inside Guix, is not a "hack" for compatibility, and is explicitly recommended against by glibc: https://sourceware.org/glibc/wiki/FAQ#What_version_of_the_Linux_kernel_headers_should_be_used.3F. so using the latest version of the longterm headers seems appropriate. The last time we changed this was when we consolidated all builds to 5.15, in #25006.
1 parent d9007f5 commit 380e365

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/guix/manifest.scm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
(gnu packages gawk)
1212
(gnu packages gcc)
1313
((gnu packages installers) #:select (nsis-x86_64))
14-
((gnu packages linux) #:select (linux-libre-headers-5.15 util-linux))
14+
((gnu packages linux) #:select (linux-libre-headers-6.1 util-linux))
1515
(gnu packages llvm)
1616
(gnu packages mingw)
1717
(gnu packages moreutils)
@@ -92,7 +92,7 @@ chain for " target " development."))
9292
(license (package-license xgcc)))))
9393

9494
(define base-gcc gcc-10)
95-
(define base-linux-kernel-headers linux-libre-headers-5.15)
95+
(define base-linux-kernel-headers linux-libre-headers-6.1)
9696

9797
(define* (make-bitcoin-cross-toolchain target
9898
#:key

0 commit comments

Comments
 (0)