summaryrefslogtreecommitdiff
path: root/Kernel/init.cpp
AgeCommit message (Expand)Author
2018-11-01More work on per-process page directories. It basically works now!Andreas Kling
2018-10-31Add a kmalloc_eternal() for things that will never be destroyed.Andreas Kling
2018-10-31Snazz up the kprintf() output a bit by giving it its own color.Andreas Kling
2018-10-31Snazz up the sh prompt a bit. Add the current tty to it.Andreas Kling
2018-10-31Fuck it, add a 4th virtual console. :^)Andreas Kling
2018-10-30Fix bug where Console::the() was initialized too late.Andreas Kling
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-30Start working on virtual consoles/TTYs.Andreas Kling
2018-10-29Fix broken SpinLock.Andreas Kling
2018-10-28Fix up VFS::resolveSymbolicLink() to use a base inode instead of a base path.Andreas Kling
2018-10-28Add basic support for ANSI color escape sequences.Andreas Kling
2018-10-27Rename "kernel map" concept to just "ksyms"Andreas Kling
2018-10-27Remove the obsolete "Userspace" stuff.Andreas Kling
2018-10-27Greatly improve /proc/PID/stack by tracing the ebp frame chain.Andreas Kling
2018-10-26Add a very hackish /proc/PID/stack.Andreas Kling
2018-10-26Implement /proc/PID/vm.Andreas Kling
2018-10-26Fix mixup between /dev/null and /dev/zero device registration.Andreas Kling
2018-10-25Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().Andreas Kling
2018-10-25Implement a basic way for read() to block.Andreas Kling
2018-10-25Make the stage2 init task sleep dreamily when finished.Andreas Kling
2018-10-25Implement errno in LibC.Andreas Kling
2018-10-25Unify the Task constructors.Andreas Kling
2018-10-25Remove age-old IPC stuff that wasn't working anyway.Andreas Kling
2018-10-24Add a "pwd" utility to userland.Andreas Kling
2018-10-24Cleanup.Andreas Kling
2018-10-24Unbreak crashy user process test.Andreas Kling
2018-10-23Generalize the SpinLock and move it to AK.Andreas Kling
2018-10-23Add "times scheduled" field to /proc/summaryAndreas Kling
2018-10-23Add an undertaker task that is responsible for destroying dead tasks.Andreas Kling
2018-10-23Generate a basic /proc/summary file with some info about all tasks.Andreas Kling
2018-10-23Start adding a basic /proc filesystem and a "ps" utility.Andreas Kling
2018-10-23Flush the TLB after modifying page tables.Andreas Kling
2018-10-23Lots of hacking:Andreas Kling
2018-10-22Launching an arbitrary ELF executable from disk works! :^)Andreas Kling
2018-10-22Okay, with some mucking around, there is now a /bin/id and it runs!Andreas Kling
2018-10-22Oops, StringImpl's "the empty string" global was not always initialized.Andreas Kling
2018-10-22Add IRQHandler class that can be subclasses to handle an IRQ.Andreas Kling
2018-10-22Tweak _test.o to use the putch() syscall.Andreas Kling
2018-10-22Add a sys$exit and make init_stage2 call it when finished.Andreas Kling
2018-10-22A lot of hacking:Andreas Kling
2018-10-21Have Console::write() directly call vga_putch.Andreas Kling
2018-10-21Add a Console device and start refactoring screen output.Andreas Kling
2018-10-19Turn the syscall interrupt into a trap (by switching the gate type.)Andreas Kling
2018-10-18ELFLoader works inside the kernel!Andreas Kling
2018-10-18Add Regions concept to Task.Andreas Kling
2018-10-18More paging stuff.Andreas Kling
2018-10-18Use FileHandle from VFS.Andreas Kling
2018-10-17A userspace process can now GPF and the OS goes on!Andreas Kling
2018-10-17Add basic paging. Only identity maps the bottom 4MB as a start.Andreas Kling
2018-10-17Print the contents of motd.txt on boot.Andreas Kling