Skip to content

3. Directory Structure

Pradosh edited this page Oct 10, 2025 · 2 revisions

Directory Structure

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

65 directories

Clone this wiki locally