From 1475cb2f33daac421399c82c9bd126bb21a85c49 Mon Sep 17 00:00:00 2001 From: Edwin Amsler Date: Wed, 2 Oct 2019 16:38:59 -0500 Subject: [PATCH 1/2] Update README.md Include the requirement on `xargo` and how to install it --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8d8e59d..bc9e1a1 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ a minimal Linux kernel module written in rust. ## Requirements - A recent build of Rust (latest nightly) + - Xargo (install with `cargo install xargo`) This code uses [feature flags](http://blog.rust-lang.org/2014/10/30/Stability.html#the-plan), so you'll need to use a [nightly version of Rust](http://doc.rust-lang.org/book/nightly-rust.html) From 97da398898d16cce473827cdc854cd9a11af0698 Mon Sep 17 00:00:00 2001 From: Edwin Amsler Date: Wed, 2 Oct 2019 16:46:49 -0500 Subject: [PATCH 2/2] Update README.md Added Rust's source code as another requirement --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bc9e1a1..bbffcb8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ a minimal Linux kernel module written in rust. - A recent build of Rust (latest nightly) - Xargo (install with `cargo install xargo`) + - Rust source code (install with `rustup component add rust-src`) This code uses [feature flags](http://blog.rust-lang.org/2014/10/30/Stability.html#the-plan), so you'll need to use a [nightly version of Rust](http://doc.rust-lang.org/book/nightly-rust.html)