-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (69 loc) · 2.01 KB
/
mkdocs.yml
File metadata and controls
76 lines (69 loc) · 2.01 KB
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
site_name: rou2exOS Rusted Edition Documentation
site_url: "https://r2.krusty.space"
dev_addr: 0.0.0.0:8000
lang: "en"
theme:
name: material
palette:
scheme: slate
primary: 0x0000a8
accent: 0x0000a8
#icon:
# repo: fontawesome/brands/gitlab
features:
# - content.action.edit
- search.suggest
- search.highlight
copyright: "@krusty.space 2026 --- Note: Some portions of this documentation have been generated from the original source code by AI."
extra:
homepage: "https://r2.krusty.space"
social:
- icon: fontawesome/brands/github
link: "https://github.com/krustowski/rou2exOS"
plugins:
#- git-revision-date-localized:
#enable_creation_date: true
#type: date
- search
#- offline
extra_javascript:
- assets/js/umami.js
nav:
- Intro: index.md
- Build & Run: build.md
- Shell (Text Mode): shell.md
- SDK: sdk.md
- Kernel Internals:
- Boot / Init:
- Overview: init/overview.md
- Subsystems: init/subsystems.md
- Multitasking:
- Scheduler: multitasking/scheduler.md
- Processes: multitasking/process.md
- IPC: multitasking/IPC.md
- Memory:
- Overview: memory/overview.md
- Allocators: memory/allocators.md
- Filesystems:
- Overview: filesystem/overview.md
- FAT12: filesystem/fat12.md
- ISO9660: filesystem/iso9660.md
- Networking:
- Overview: networking/overview.md
- Hardware: networking/hardware.md
- Protocols: networking/protocols.md
- Video:
- Overview: video/overview.md
- VGA: video/vga.md
- Input:
- Overview: input/overview.md
- Keyboard: input/keyboard.md
- Mouse: input/mouse.md
- ABI / Syscalls:
- Specification: abi/syscall_specification.md
- Type Definitions: abi/type_definitions.md
- Syscalls:
- Sysinfo & Memory: abi/syscalls/sysinfo_mem_mgmt.md
- Video & Audio: abi/syscalls/video_audio.md
- Filesystem: abi/syscalls/filesystem.md
- Ports & Networking: abi/syscalls/port_networking.md