Skip to content

Commit 42d7fde

Browse files
committed
[doc] Removed semester-specific markings
1 parent 7a217b4 commit 42d7fde

File tree

2 files changed

+30
-50
lines changed

2 files changed

+30
-50
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

README.md

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,58 @@
1-
# rCore-Tutorial-Code-2025S
1+
# rCore-Tutorial-Code
22

3-
### Code
4-
- [Soure Code of labs for 2025S](https://github.com/LearningOS/rCore-Tutorial-Code-2025S)
5-
### Documents
3+
## Code
64

7-
- Concise Manual: [rCore-Tutorial-Guide-2025S](https://LearningOS.github.io/rCore-Tutorial-Guide-2025S/)
5+
- [Soure Code of labs](https://github.com/LearningOS/rCore-Tutorial-Code)
6+
7+
## Documents
8+
9+
- Concise Manual: [rCore-Tutorial-Guide](https://LearningOS.github.io/rCore-Tutorial-Guide/)
810

911
- Detail Book [rCore-Tutorial-Book-v3](https://rcore-os.github.io/rCore-Tutorial-Book-v3/)
1012

13+
## OS API docs of rCore Tutorial Code
1114

12-
### OS API docs of rCore Tutorial Code 2025S
13-
- [OS API docs of ch1](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch1/os/index.html)
14-
AND [OS API docs of ch2](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch2/os/index.html)
15-
- [OS API docs of ch3](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch3/os/index.html)
16-
AND [OS API docs of ch4](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch4/os/index.html)
17-
- [OS API docs of ch5](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch5/os/index.html)
18-
AND [OS API docs of ch6](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch6/os/index.html)
19-
- [OS API docs of ch7](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch7/os/index.html)
20-
AND [OS API docs of ch8](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch8/os/index.html)
21-
- [OS API docs of ch9](https://learningos.github.io/rCore-Tutorial-Code-2025S/ch9/os/index.html)
15+
- [OS API docs of ch1](https://learningos.github.io/rCore-Tutorial-Code/ch1/os/index.html)
16+
AND [OS API docs of ch2](https://learningos.github.io/rCore-Tutorial-Code/ch2/os/index.html)
17+
- [OS API docs of ch3](https://learningos.github.io/rCore-Tutorial-Code/ch3/os/index.html)
18+
AND [OS API docs of ch4](https://learningos.github.io/rCore-Tutorial-Code/ch4/os/index.html)
19+
- [OS API docs of ch5](https://learningos.github.io/rCore-Tutorial-Code/ch5/os/index.html)
20+
AND [OS API docs of ch6](https://learningos.github.io/rCore-Tutorial-Code/ch6/os/index.html)
21+
- [OS API docs of ch7](https://learningos.github.io/rCore-Tutorial-Code/ch7/os/index.html)
22+
AND [OS API docs of ch8](https://learningos.github.io/rCore-Tutorial-Code/ch8/os/index.html)
23+
- [OS API docs of ch9](https://learningos.github.io/rCore-Tutorial-Code/ch9/os/index.html)
2224

23-
### Related Resources
24-
- [Learning Resource](https://github.com/LearningOS/rust-based-os-comp2022/blob/main/relatedinfo.md)
25+
## Related Resources
2526

27+
- [Learning Resource](https://github.com/LearningOS/rust-based-os-comp2025/blob/main/relatedinfo.md)
2628

27-
### Build & Run
29+
## Build & Run
2830

2931
```bash
3032
# setup build&run environment first
31-
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code-2025S.git
32-
$ cd rCore-Tutorial-Code-2025S
33-
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test-2025S.git user
33+
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code.git
34+
$ cd rCore-Tutorial-Code
35+
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test.git user
3436
$ git checkout ch$ID
3537
$ cd os
3638
# run OS in ch$ID
3739
$ make run
3840
```
41+
3942
Notice: $ID is from [1-9]
4043

41-
### Grading
44+
## Grading
4245

4346
```bash
4447
# setup build&run environment first
45-
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code-2025S.git
46-
$ cd rCore-Tutorial-Code-2025S
48+
$ git clone https://github.com/LearningOS/rCore-Tutorial-Code.git
49+
$ cd rCore-Tutorial-Code
4750
$ rm -rf ci-user
48-
$ git clone https://github.com/LearningOS/rCore-Tutorial-Checker-2025S.git ci-user
49-
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test-2025S.git ci-user/user
51+
$ git clone https://github.com/LearningOS/rCore-Tutorial-Checker.git ci-user
52+
$ git clone https://github.com/LearningOS/rCore-Tutorial-Test.git ci-user/user
5053
$ git checkout ch$ID
5154
# check&grade OS in ch$ID with more tests
5255
$ cd ci-user && make test CHAPTER=$ID
5356
```
57+
5458
Notice: $ID is from [3,4,5,6,8]

0 commit comments

Comments
 (0)