forked from YatSenOS/YatSenOS-Tutorial-Volume-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
130 lines (123 loc) · 3.71 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
site_name: YatSenOS v2 Tutorial
site_url: https://ysos.gzti.me
repo_url: https://github.com/YatSenOS/YatSenOS-Tutorial-Volume-2
repo_name: YatSenOS-Tutorial-Volume-2
theme:
name: material
custom_dir: docs/overrides
language: zh
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- navigation.prune
- navigation.indexes
- navigation.footer
- navigation.tracking
- navigation.instant
- navigation.instant.progress
- content.code.copy
- content.code.select
- content.tabs.link
- toc.follow
font:
code: JetBrains Mono
nav:
- 主页:
- index.md
- 代码与提交规范: general/specification.md
- 寻求帮助: general/help.md
- 常见问题及解答: general/faq.md
- 使用 Typst 编写报告: general/typst.md
- 实验指南:
- 实验零:实验准备:
- labs/0x00/index.md
- 实验任务: labs/0x00/tasks.md
- 实验一:操作系统的启动:
- labs/0x01/index.md
- 实验任务: labs/0x01/tasks.md
- 实验二:中断处理:
- labs/0x02/index.md
- 实验任务: labs/0x02/tasks.md
- 实验三:内核线程与缺页异常:
- labs/0x03/index.md
- 实验任务: labs/0x03/tasks.md
- 实验四:用户程序与系统调用:
- labs/0x04/index.md
- 实验任务: labs/0x04/tasks.md
- 实验五:fork、阻塞与并发:
- labs/0x05/index.md
- 实验任务: labs/0x05/tasks.md
- 实验六:硬盘驱动与文件系统:
- labs/0x06/index.md
- 实验任务: labs/0x06/tasks.md
- 实验七:更好的内存管理:
- labs/0x07/index.md
- 实验任务: labs/0x07/tasks.md
- 实验八:扩展实验:
- labs/0x08/index.md
- 实验资料:
- Linux 环境配置: wiki/linux.md
- Windows 环境配置: wiki/windows.md
- Rust 语言基础: wiki/rust.md
- 实验调试指南: wiki/debug.md
- UEFI 启动过程: wiki/uefi.md
- QEMU 使用参考: wiki/qemu.md
- 分页内存简述: wiki/paging.md
- ELF 文件格式: wiki/elf.md
- UART 串口通信: wiki/uart.md
- CPU 中断处理: wiki/interrupts.md
- APIC 可编程中断控制器: wiki/apic.md
- x64 数据结构概述: wiki/structures.md
- 用户空间: wiki/userspace.md
- 文件系统概述: wiki/fs.md
- ATA 硬盘简介: wiki/ata.md
- FAT 文件系统: wiki/fat.md
markdown_extensions:
- attr_list:
- pymdownx.highlight:
linenums: true
use_pygments: true
pygments_lang_class: true
- pymdownx.superfences:
- pymdownx.tabbed:
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.details:
- admonition:
- toc:
permalink: true
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
plugins:
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
- git-revision-date-localized:
enable_creation_date: true
type: iso_datetime
extra_javascript:
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js
- scripts/katex.js
extra_css:
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css
- css/fonts.css
- css/extra.css
- css/inst.css