-
Concise Manual: rCore-Tutorial-Guide-2024S
-
Detail Book rCore-Tutorial-Book-v3
- OS API docs of ch1 AND OS API docs of ch2
- OS API docs of ch3 AND OS API docs of ch4
- OS API docs of ch5 AND OS API docs of ch6
- OS API docs of ch7 AND OS API docs of ch8
- OS API docs of ch9
# setup build&run environment first
git clone https://github.com/LearningOS/rCore-Tutorial-Code-2024S.git
cd rCore-Tutorial-Code-2024S
git clone https://github.com/LearningOS/rCore-Tutorial-Test-2024S.git user
git checkout ch$ID
cd os
# run OS in ch$ID
make run
Notice: $ID is from [1-9]
# setup build&run environment first
git clone https://github.com/LearningOS/rCore-Tutorial-Code-2024S.git
cd rCore-Tutorial-Code-2024S
rm -rf ci-user
git clone https://github.com/LearningOS/rCore-Tutorial-Checker-2024S.git ci-user
git clone https://github.com/LearningOS/rCore-Tutorial-Test-2024S.git ci-user/user
git checkout ch8
# check&grade OS in ch$ID with more tests
cd ci-user && make test CHAPTER=8
Notice: $ID is from [3,4,5,6,8]