summaryrefslogtreecommitdiff
path: root/Kernel/MiniStdLib.cpp
AgeCommit message (Collapse)Author
2023-06-04Everywhere: Move global Kernel pattern code to Kernel/Library directoryLiav 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-28Kernel: Remove i686 supportLiav A
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-24Kernel: Move {strnlen, strcmp, memcmp, strncmp, strstr} to MiniStdLibIdan Horowitz
This lets the Prekernel also use these simple (and standalone) C functions.
2021-09-07Kernel: Build MiniStdLib.cpp in aarch64 buildsNico Weber
2021-07-18Kernel: Introduce basic pre-kernel environmentGunnar 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>