From c2ecc4fe95ff0f0e2b2bf714b836480df533aa31 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 17 Oct 2022 19:32:02 +0200 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 28621a7d..38ac48e3 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Not so much at the moment. - Can [load userspace ELF programs](kernel/src/sys/elf/) from the initial ramdisk as user tasks. - [System call](kernel/src/sys/) interface and bare-bones [C Library](libs/libc/). - Some very simple [example programs](apps/), written in C, that the kernel then loads from the initial ramdisk. +- UNIX-like [multitasking primitives](kernel/src/sys/exec.cpp). ## Setup To build and run Luna, you will need to build a [GCC Cross-Compiler](https://wiki.osdev.org/Why_do_I_need_a_Cross_Compiler%3F) and cross-binutils for `x86_64-luna`. (Yes, Luna is advanced enough that it can use its own [OS-Specific Toolchain](https://wiki.osdev.org/OS_Specific_Toolchain), instead of a bare metal target like `x86_64-elf`. It is the first of my OS projects to be able to do so. The patches for Binutils and GCC are [binutils.patch](tools/binutils.patch) and [gcc.patch](tools/gcc.patch)).