Skip to content

3. Directory Structure

Pradosh edited this page Jan 15, 2025 · 1 revision

Directory Structure

./
├── .github/
│   │
│   └── workflows/
│
├── disk_root/
│   │
│   └── EFI/
│       │
│       └── BOOT/
│
│
│
├── docs/
│   │
│   ├── html/
│   │   │
│   │   │
│   │   │
│   │   │
│   │   └── search/
│   │
│   │
│   └── latex/
│
│
├── firmware/
│   │
│   └── uefi/
│
│
├── keys/
│
├── limine/
│
└── source/
    │
    ├── boot/
    │
    ├── drivers/
    │   │
    │   ├── audio/
    │   │
    │   └── networking/
    │       │
    │       ├── WiFi/
    │       │
    │       └── ethernet/
    │           │
    │           └── RTL/
    │
    │
    │
    │
    ├── includes/
    │   │
    │   ├── C++/
    │   │
    │   ├── algorithms/
    │   │
    │   ├── archive/
    │   │
    │   ├── drivers/
    │   │
    │   ├── executables/
    │   │
    │   ├── filesystems/
    │   │
    │   ├── flanterm/
    │   │
    │   ├── image/
    │   │
    │   ├── math/
    │   │
    │   └── opengl/
    │
    │
    ├── kernel/
    │   │
    │   └── C/
    │       │
    │       ├── algorithms/
    │       │
    │       ├── archive/
    │       │
    │       ├── executables/
    │       │
    │       ├── flanterm/
    │       │
    │       ├── image/
    │       │
    │       ├── interrupts/
    │       │
    │       ├── math/
    │       │
    │       ├── misc/
    │       │
    │       ├── opengl/
    │       │
    │       ├── shell/
    │       │   │
    │       │   └── commands/
    │       │
    │       │
    │       └── user-input/
    │
    │
    │
    ├── linker/
    │
    └── obj/
        ...