blob: c6617df0a227ac2b9630b52eded179cd778d5b16 (
plain)
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
|
FILESYSTEM
==========
Openlinux filesystem is designed to be as handy as possible.
┌── bin/
│ └── (System binaries)
│
├── efi/ (separate parition can be mounted at /boot)
│ └── boot/
│ ├── bootx64.efi (1)
│ └── initrd (2)
│
├── lib/
│ └── (System libraries)
│
├── usr/
│ ├── include/
│ │ └── (System headers)
│ │
│ ├── local/
│ │ ├── bin/
│ │ │ └── (User binaries)
│ │ ├── lib/
│ │ │ └── (User libraries)
│ │ └── include/
│ │ └── (User headers)
(1) - https://www.kernel.org/doc/html/latest/admin-guide/efi-stub.html
(2) - https://www.kernel.org/doc/html/latest/admin-guide/initrd.html
|