summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
AgeCommit message (Expand)Author
2020-01-18Kernel: Clean up and reorganize init.cppAndreas Kling
2020-01-18Kernel: Move all CPU feature initialization into cpu_setup()Andreas Kling
2020-01-18ACPI: Re-enable ACPI initialization after paging changesAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Move kernel above the 3GB virtual address markAndreas Kling
2020-01-17Kernel: Misc tweaksSergey Bugaev
2020-01-14Kernel: Move DMI decoder initialization method to init_stage2Liav A
2020-01-10Kernel: Add a basic chroot() syscall :^)Andreas Kling
2020-01-06Kernel: Randomize the stack canary on startupAndreas Kling
2020-01-03Kernel: Add a more expressive API for getting random bytesAndreas Kling
2020-01-02Kernel: Create support for PCI ECAMLiav A
2020-01-01Kernel: Disable x86 RDTSC instruction in userspaceAndreas Kling
2020-01-01Kernel: Enable x86 UMIP (User Mode Instruction Prevention) if supportedAndreas Kling
2020-01-01Kernel: Move CPU feature detection to Arch/x86/CPU.{cpp.h}Andreas Kling
2019-12-30Kernel: Refactor scheduler to use dynamic thread prioritiesAndreas Kling
2019-12-29Kernel: Embrace the SerenityOS nameAndreas Kling
2019-12-22Kernel: Get rid of "main thread" conceptAndreas Kling
2019-12-01Kernel: Use a WaitQueue to implement finalizer wakeupAndreas Kling
2019-11-17Kernel: Just hang if VFS::mount_root() failsAndreas Kling
2019-11-13Kernel: Add a kernel boot parameter to force PIO modesupercomputer7
2019-11-09Kernel: Use a lookup table for syscallsAndreas Kling
2019-11-08Kernel: Removing hardcoded offsets from Memory Managersupercomputer7
2019-11-06Kernel: Rework Process::Priority into ThreadPriorityAndreas Kling
2019-11-06Kernel: Remove unnecessary init_ksyms() functionAndreas Kling
2019-11-06Kernel: Don't instantiate and throw away ProcFS + DevPtsFS on bootAndreas Kling
2019-11-06Kernel: Use KParams::has() instead of !KParams::get().is_null()Andreas Kling
2019-11-06Kernel+SystemServer: Get rid of two virtual consolesAndreas Kling
2019-10-31Kernel: Add bare minimum for global constructors (#707)Andrew Kaster
2019-10-29Kernel: Enabling Text mode debugging (#696)Liav A
2019-10-16APIC: Enable APIC and start APsTom
2019-10-07PartitionTable: Initial GPT Support, Adding Block Limitsupercomputer7
2019-09-16Kernel: Add a simple slab allocator for small allocationsAndreas Kling
2019-09-16Kernel: Move kmalloc() into a Kernel/Heap/ directoryAndreas Kling
2019-09-14Kernel: Stop idling after handling an IRQAndreas Kling
2019-08-29Kernel: Remove specific devices from network codeConrad Pankoff
2019-08-29Kernel: Run NetworkTask in init stage 2 to allow use of locksConrad Pankoff
2019-08-21Kernel: Implement rtl8139 network interface driverConrad Pankoff
2019-08-18Kernel: Implement generic VGA device using multiboot infoConrad Pankoff
2019-08-18Kernel: Disable VGA console in graphical modeConrad Pankoff
2019-08-17Kernel+SystemServer: Mount filesystems and start TTYServer in userspaceSergey Bugaev
2019-08-17DevPtsFS: Do not assume there is one of itSergey Bugaev
2019-08-17ProcFS: Do not assume there is one of itSergey Bugaev
2019-08-15Kernel: Add TmpFSSergey Bugaev
2019-08-12Server: Add TTYServer, a rudimentary text console managerConrad Pankoff
2019-08-11Kernel: Print out PCI devices during bootConrad Pankoff
2019-08-11Kernel: Add serial_debug cmdline parameterConrad Pankoff
2019-07-30Kernel: fix typo regarding floppy drives in init_stage2Conrad Pankoff
2019-07-28Kernel: Expand PATA driver to support multiple hard drives (#365)Jesse
2019-07-21Kernel: Remove bitrotted "spawn stress" code.Andreas Kling
2019-07-20Finalizer: Don't double-yieldRobin Burchell