blob: 004f4b030d91f436ed5e70e5d9ede6f71ca5d69c (
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
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
|
# L5Lunos - a clean, modern Solaris
Written mostly solo and completely from scratch, not Linux based nor does it
share any existing operating system sources.
## Current status
**Under heavy development**
## Progress
- 57-bit (5-level) paging
- 48-bit (4-level) paging
- Printf-style kernel logging
- Video console
- I/O APIC
- Local APIC timer(s)
- Processor local APIC(s)
- Syscall windows, domains and platform latches
- OSMORA Archive Format (OMAR) initramfs
- ELF64 loader
- 16550 UART I/O
- i8254
- i8259
## Goals
- POSIX compliancy
- PCI
- PCIe
- PCI(e) MSI
- PCI(e) MSI-X
- File I/O syscalls
- AHCI/SATA support
- NVMe support
- Single-level store orthogonal to disk/ram
- UNIX-like FS layered on SLS
- Block I/O framework
- USB support (xHCI / USB 3.0)
- Capability based security
...
## Build instructions
To build the system, run the following to generate an ISO image:
```sh
tools/bootstrap.sh # Build and fetch prerequisites
tools/tools/build-toolchain.sh # Build the cross compilation toolchain
make
```
## License
This project is licensed under the BSD 3 clause
SPDX identifier: BSD-3-Clause
|