about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2025-02-19 05:39:15 +0000
committerGitHub <noreply@github.com>2025-02-19 05:39:15 +0000
commite2ba35a451de25fdad24333040ee3dfca114614b (patch)
tree175f3b6562847b432bc2f26c5a661ff97206c2fa /src/ci/docker/scripts
parent821c33fe073c3e230baa207e88b973f9b4d96072 (diff)
parent2e71770009871a3a8b4ec2974c4918c09445666b (diff)
downloadrust-e2ba35a451de25fdad24333040ee3dfca114614b.tar.gz
rust-e2ba35a451de25fdad24333040ee3dfca114614b.zip
Merge pull request #4197 from rust-lang/rustup-2025-02-19
Automatic Rustup
Diffstat (limited to 'src/ci/docker/scripts')
-rwxr-xr-xsrc/ci/docker/scripts/rfl-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/rfl-build.sh b/src/ci/docker/scripts/rfl-build.sh
index 3eb85ab215e..573821c3e59 100755
--- a/src/ci/docker/scripts/rfl-build.sh
+++ b/src/ci/docker/scripts/rfl-build.sh
@@ -2,7 +2,7 @@
 
 set -euo pipefail
 
-LINUX_VERSION=50e57739141b41f731ab31f8380821c7969f9dc4
+LINUX_VERSION=v6.14-rc3
 
 # Build rustc, rustdoc, cargo, clippy-driver and rustfmt
 ../x.py build --stage 2 library rustdoc clippy rustfmt
@@ -28,7 +28,7 @@ rm -rf linux || true
 # Download Linux at a specific commit
 mkdir -p linux
 git -C linux init
-git -C linux remote add origin https://github.com/Darksonn/linux.git
+git -C linux remote add origin https://github.com/Rust-for-Linux/linux.git
 git -C linux fetch --depth 1 origin ${LINUX_VERSION}
 git -C linux checkout FETCH_HEAD