summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
AgeCommit message (Expand)Author
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
2019-07-20Thread: Return a result from block() indicating why the block terminatedRobin Burchell
2019-07-19Kernel: Remove memory allocations from the new Blocker APIRobin Burchell
2019-07-19Kernel: Convert BlockedSignal and BlockedLurking to the new Blocker mechanismRobin Burchell
2019-07-17Kernel: Initial FDC Device Driver (#315)Jesse
2019-07-13Kernel: First cut of a sb16 driverRobin Burchell
2019-07-11Kernel: Remove use of copy_ref() in favor of regular RefPtr copies.Andreas Kling
2019-07-09Kernel: Move i8253.cpp => Arch/i386/PIT.cppAndreas Kling
2019-07-09Kernel: Move PIC.cpp into Arch/i386/Andreas Kling
2019-07-08Kernel: Extended IDE interface to allow slave device usage (#283)Jesse
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-08Kernel: Implement serial port driverConrad Pankoff
2019-06-07Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}Andreas Kling
2019-06-07Kernel: Run clang-format on everything.Andreas Kling
2019-06-04Kernel: Parse cmdline for root filesystem e.g. root=/dev/hda1Conrad Pankoff
2019-06-04Kernel: Add KParams class for accessing kernel cmdline parameters (#188)Conrad Pankoff
2019-06-02Kernel: Implement MBR partition loader (#168)Conrad Pankoff
2019-06-02Kernel: Rename OffsetDiskDevice to DiskPartitionConrad Pankoff