Skip to content

Commit

Permalink
Merge pull request #591 from stlankes/toolchain
Browse files Browse the repository at this point in the history
use the latest nightly compiler and the latest kernel
  • Loading branch information
stlankes authored Jun 18, 2024
2 parents b7307cc + df71679 commit 10460ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions hermit-abi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#![no_std]
#![allow(nonstandard_style)]
#![allow(dead_code)]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::result_unit_err)]

Expand Down
2 changes: 1 addition & 1 deletion kernel
Submodule kernel updated 41 files
+20 −8 Cargo.lock
+3 −3 Cargo.toml
+1 −0 README.md
+1 −1 rust-toolchain.toml
+1 −1 src/arch/aarch64/kernel/mmio.rs
+1 −1 src/arch/aarch64/kernel/pci.rs
+2 −2 src/arch/aarch64/mm/physicalmem.rs
+2 −2 src/arch/riscv64/kernel/devicetree.rs
+1 −1 src/arch/riscv64/kernel/mmio.rs
+5 −3 src/arch/riscv64/kernel/scheduler.rs
+2 −2 src/arch/riscv64/mm/physicalmem.rs
+2 −1 src/arch/x86_64/kernel/apic.rs
+3 −3 src/arch/x86_64/kernel/mmio.rs
+6 −5 src/arch/x86_64/kernel/mod.rs
+1 −1 src/arch/x86_64/kernel/pci.rs
+21 −16 src/arch/x86_64/mm/physicalmem.rs
+54 −24 src/drivers/fs/virtio_fs.rs
+6 −40 src/drivers/fs/virtio_pci.rs
+1 −5 src/drivers/net/mod.rs
+95 −0 src/drivers/net/virtio/mmio.rs
+99 −162 src/drivers/net/virtio/mod.rs
+9 −59 src/drivers/net/virtio/pci.rs
+0 −186 src/drivers/net/virtio_mmio.rs
+10 −33 src/drivers/pci.rs
+9 −209 src/drivers/virtio/env.rs
+1 −2 src/drivers/virtio/mod.rs
+23 −25 src/drivers/virtio/transport/mmio.rs
+87 −179 src/drivers/virtio/transport/pci.rs
+18 −16 src/drivers/virtio/virtqueue/mod.rs
+13 −54 src/drivers/virtio/virtqueue/packed.rs
+6 −20 src/drivers/virtio/virtqueue/split.rs
+4 −2 src/fd/socket/tcp.rs
+229 −302 src/fs/fuse.rs
+6 −0 src/lib.rs
+2 −1 virtio-spec/Cargo.toml
+24 −22 virtio-spec/src/features.rs
+37 −0 virtio-spec/src/fs.rs
+1 −6 virtio-spec/src/lib.rs
+40 −1 virtio-spec/src/mmio.rs
+246 −0 virtio-spec/src/net.rs
+37 −4 virtio-spec/src/pci.rs
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2024-04-15"
channel = "nightly-2024-06-18"
components = [ "rust-src" ]

0 comments on commit 10460ea

Please sign in to comment.