diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-08-25 16:51:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-25 16:51:04 +0200 |
| commit | 0e2523eaf8a29d6b8394cb43abfed3dfd4ddbc5a (patch) | |
| tree | 3cc5b280a8eb8cdb4abd01515860bb55bf2491c2 /src | |
| parent | 8e27d4ce42a5634b4c0786a9258f3c0c8638370e (diff) | |
| parent | 90b4e17a1f6604db7f55b45b8b70c2db0afcec14 (diff) | |
| download | rust-0e2523eaf8a29d6b8394cb43abfed3dfd4ddbc5a.tar.gz rust-0e2523eaf8a29d6b8394cb43abfed3dfd4ddbc5a.zip | |
Rollup merge of #129416 - workingjubilee:partial-move-from-stabilization, r=dtolnay
library: Move unstable API of new_uninit to new features - `new_zeroed` variants move to `new_zeroed_alloc` - the `write` fn moves to `box_uninit_write` The remainder will be stabilized in upcoming patches, as it was decided to only stabilize `uninit*` and `assume_init`.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/ci/docker/scripts/rfl-build.sh | 4 |
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 d690aac27fa..389abb2fdd3 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=v6.11-rc1 +LINUX_VERSION=4c7864e81d8bbd51036dacf92fb0a400e13aaeee # Build rustc, rustdoc and cargo ../x.py build --stage 1 library rustdoc @@ -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/torvalds/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 |
