diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-02 16:51:45 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-02 16:51:45 +0200 |
| commit | 3e30ee1749d19f5188560f9a5cdab922180c71ca (patch) | |
| tree | 3d9400e1c232c609f66e6b68d6bd90dc621de35a /dev/zka/doc | |
| parent | c49f9a9b4e685cc179f5048ada99bf627edaf110 (diff) | |
IMP: Update setup program for ZKA OS SDK.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/zka/doc')
| -rw-r--r-- | dev/zka/doc/Explicit Partition Map.pdf | bin | 0 -> 12326 bytes | |||
| -rw-r--r-- | dev/zka/doc/SPECIFICATION.md | 62 | ||||
| -rw-r--r-- | dev/zka/doc/TODO-LIST.md | 25 |
3 files changed, 87 insertions, 0 deletions
diff --git a/dev/zka/doc/Explicit Partition Map.pdf b/dev/zka/doc/Explicit Partition Map.pdf Binary files differnew file mode 100644 index 00000000..1e2f5318 --- /dev/null +++ b/dev/zka/doc/Explicit Partition Map.pdf diff --git a/dev/zka/doc/SPECIFICATION.md b/dev/zka/doc/SPECIFICATION.md new file mode 100644 index 00000000..c38fa122 --- /dev/null +++ b/dev/zka/doc/SPECIFICATION.md @@ -0,0 +1,62 @@ +=================================== + +# 0: General Information + +=================================== + +- ABI and Format: PEF/PE32+. +- Kernel architecture: Portable hybrid Kernel. +- Language: C++/(Assembly (AMD64, X64000, X86S, ARM64, POWER, RISCV)) + +=================================== + +# 1: The Kernel + +=================================== + +- Drive/Device Abstraction. +- SMP, Preemptive Multi Threading. +- Separation of Files/Devices. +- Networking. +- Hardware Abstraction Layer. +- Native Filesystem support (NeFS, FAT32 and ffs2). +- Program Loaders interfaces. +- TLS (Thread Local Storage) support. +- Semaphore, Locks, Timers. +- Canary mechanisms. +- Dynamic Sys. +- Cross Platform. +- Permission Selectors. + +=================================== + +# 2: The Filesystem + +=================================== + +- Catalog object with associated forks. +- Large storage support. +- Long file names. +- UNIX path style. + +================================== + +# 3: Common naming conventions: + +================================== + +- Kernel -> ke_init_x +- RunTime -> rt_copy_mem +- Hal -> hal_foo_bar + +=================================== + +# 4: The newosldr + +=================================== + +- Capable of booting from a network drive. +- Loads a PE file which is the Kernel. +- Sanity checks, based on the number of sections. +- Handover compliant. +- Does check for a valid partition (useful in the case of recovering) diff --git a/dev/zka/doc/TODO-LIST.md b/dev/zka/doc/TODO-LIST.md new file mode 100644 index 00000000..2b4ea96c --- /dev/null +++ b/dev/zka/doc/TODO-LIST.md @@ -0,0 +1,25 @@ +# TODO list + +- We need preemptive multi-threading. [ X ] +- We then need sync primitives. [ X ] +- We also need a system library for the OS. [ X ] +- We need a bootloader for AMD64 [ X ] + - Implement Boot Services [ X ] + - Design Handover [ X ] + - Load Kernel into memory [ X ] + - Fix bug in Kernel loader, which causes a 06 #UD. [ X ] + - Load Kernel [ X ] + - Add IDT [ X ] + - AHCI driver [ WiP ] +- Context switch x87/SSE/AVX registers [ X ] +- Framebuffer [ X ] +- ATA support [ X ] +- Make installer [ X ] + +Status: + +NEWOSLDR: Need to boot from EPM partition. [ X ] +<br> +newoskrnl: New Filesystem is done. [ X ] + +**Refer to Jira please!** |
