From 59e4927a4df5487e782c8661e04c1cf4e40b0df1 Mon Sep 17 00:00:00 2001 From: Rajas Paranjpe <52586855+ChocolateLoverRaj@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:42:30 -0700 Subject: [PATCH 1/2] Remove `asm_const` attribute because it is no longer required --- 02_runtime_init/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/02_runtime_init/src/main.rs b/02_runtime_init/src/main.rs index 152d7544f..597eb6294 100644 --- a/02_runtime_init/src/main.rs +++ b/02_runtime_init/src/main.rs @@ -106,7 +106,6 @@ //! - It is implemented in `src/_arch/__arch_name__/cpu/boot.s`. //! 2. Once finished with architectural setup, the arch code calls `kernel_init()`. -#![feature(asm_const)] #![no_main] #![no_std] From 8bc6c6f8c908b779d56153468838e619ae69ae2f Mon Sep 17 00:00:00 2001 From: Rajas Paranjpe <52586855+ChocolateLoverRaj@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:33:49 -0700 Subject: [PATCH 2/2] Update Rust version to 2024-10-15 --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a554c0a98..3f83df5c2 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "nightly-2022-10-13" +channel = "nightly-2024-10-15" components = ["rust-src", "llvm-tools-preview", "rustfmt"] targets = ["aarch64-unknown-none-softfloat"]