dramforever / rCore-Tutorial-Code-2023S

Let's write an OS which can run on RISC-V in Rust from scratch!

Home Page:https://rcore-os.github.io/rCore-Tutorial-Book-v3/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rCore-Tutorial-Code-2023S

Code

Documents

OS API docs of rCore Tutorial Code 2023S

Related Resources

Build & Run

# setup build&run environment first
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code-2023S.git
$ cd rCore-Tutorial-Code-2023S
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test-2023S.git user
$ git checkout ch$ID
$ cd os
# run OS in ch$ID
$ make run

Notice: $ID is from [1-9]

Grading

# setup build&run environment first
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code-2023S.git
$ cd rCore-Tutorial-Code-2023S
$ rm -rf ci-user
$ git clone https://github.com/LearningOS/rCore-Tutorial-Checker-2023S.git ci-user
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test-2023S.git ci-user/user
$ git checkout ch$ID
# check&grade OS in ch$ID with more tests
$ cd ci-user && make test CHAPTER=$ID

Notice: $ID is from [3,4,5,6,8]

About

Let's write an OS which can run on RISC-V in Rust from scratch!

https://rcore-os.github.io/rCore-Tutorial-Book-v3/index.html