Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-01 | Everywhere: Run clang-format | Idan Horowitz | |
2022-03-24 | Kernel: Move {strnlen, strcmp, memcmp, strncmp, strstr} to MiniStdLib | Idan Horowitz | |
This lets the Prekernel also use these simple (and standalone) C functions. | |||
2021-09-07 | Kernel: Build MiniStdLib.cpp in aarch64 builds | Nico Weber | |
2021-07-18 | Kernel: Introduce basic pre-kernel environment | Gunnar Beutner | |
This implements a simple bootloader that is capable of loading ELF64 kernel images. It does this by using QEMU/GRUB to load the kernel image from disk and pass it to our bootloader as a Multiboot module. The bootloader then parses the ELF image and sets it up appropriately. The kernel's entry point is a C++ function with architecture-native code. Co-authored-by: Liav A <liavalb@gmail.com> |