Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-04 | Everywhere: Move global Kernel pattern code to Kernel/Library directory | Liav A | |
This has KString, KBuffer, DoubleBuffer, KBufferBuilder, IOWindow, UserOrKernelBuffer and ScopedCritical classes being moved to the Kernel/Library subdirectory. Also, move the panic and assertions handling code to that directory. | |||
2022-12-28 | Kernel: Remove i686 support | Liav A | |
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> |