From df5cca1a90e8d69769e164bcdaf165188bf04929 Mon Sep 17 00:00:00 2001 From: Mauri de Souza Meneguzzo Date: Mon, 17 Mar 2025 09:01:24 -0300 Subject: [PATCH] unix: update Linux kernel to 6.14 No new syscalls or constants on this release, just bumping the version number. --- unix/linux/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unix/linux/Dockerfile b/unix/linux/Dockerfile index 2bbb21a3..68fb9c3a 100644 --- a/unix/linux/Dockerfile +++ b/unix/linux/Dockerfile @@ -15,8 +15,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Get the git sources. If not cached, this takes O(5 minutes). WORKDIR /git RUN git config --global advice.detachedHead false -# Linux Kernel: Released 20 Jan 2025 -RUN git clone --branch v6.13 --depth 1 https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux +# Linux Kernel: Released 24 Mar 2025 +RUN git clone --branch v6.14 --depth 1 https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux # GNU C library: Released 29 Jan 2025 RUN git clone --branch release/2.41/master --depth 1 https://sourceware.org/git/glibc.git