summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-30Start working on virtual consoles/TTYs.Andreas Kling
2018-10-30Basic support the backspace key.Andreas Kling
2018-10-30Hang if a task crashes while it's already crashing..Andreas Kling
2018-10-30Implement sys$getcwd properly.Andreas Kling
2018-10-29Add an inode metadata cache to the ext2fs implementation.Andreas Kling
2018-10-29Improve ps output.Andreas Kling
2018-10-29Okay let's just not have this broken locking at all right now.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 symlink support.Andreas Kling
2018-10-28Add a VFS::absolutePath(InodeIdentifier).Andreas Kling
2018-10-28Add zone dump to /proc/mm.Andreas Kling
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
2018-10-28Add subregions to /proc/PID/vmAndreas Kling
2018-10-28Add sys$set_mmap_name and use it from LibC's malloc.Andreas Kling
2018-10-28Canonicalize the path used by sh.Andreas Kling
2018-10-28Add a simple FileSystemPath class that can canonicalize paths.Andreas Kling
2018-10-28Add save/unsave cursor escape sequences.Andreas Kling
2018-10-28Stop committing changes to _fs_contents and generate it in the sync script.Andreas Kling
2018-10-28Colorize ls output.Andreas Kling
2018-10-28Give the shell a nice, colorful prompt.Andreas Kling
2018-10-28Add basic support for ANSI color escape sequences.Andreas Kling
2018-10-27Implement 'H' and 'J' escape sequences.Andreas Kling
2018-10-27Add a /bin/clear that prints the clear terminal escape sequence.Andreas Kling
2018-10-27Add some basic field width support to printf().Andreas Kling
2018-10-27Rename "kernel map" concept to just "ksyms"Andreas Kling
2018-10-27Implement loading of linked ELF executables.Andreas Kling
2018-10-27Enable A20 line at boot.Andreas Kling
2018-10-27Better int hashing. This was going to bite me sooner or later.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.Andreas Kling
2018-10-27Remove the obsolete "Userspace" stuff.Andreas Kling
2018-10-27Turn off the floppy drive after the boot loader is finished.Andreas Kling
2018-10-27Use Unix::stat for sys$lstat().Andreas Kling
2018-10-27Add some basic address validation to syscalls.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-26Add a simple /proc/mounts that enumerates the current VFS mounts.Andreas Kling
2018-10-26Add a /proc/kmalloc stats file.Andreas Kling
2018-10-26Fix bug where you couldn't "cd .." into the root of a mounted fs.Andreas Kling
2018-10-26Implement /proc/PID/vm.Andreas Kling
2018-10-26Add ASSERT_INTERRUPTS_DISABLED in Task::fromPID().Andreas Kling
2018-10-26Properly null-terminate the argv list created by sh.Andreas Kling
2018-10-26Add sys$uname() and a /bin/uname utility.Andreas Kling
2018-10-26Add per-task limit for open fd's. Hard-coded at 16 for now.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Add memcpy() and strcmp() to LibC.Andreas Kling
2018-10-26If spawning a task fails after we did a partial ELF load, remap current.Andreas Kling
2018-10-26Remove logspam in /dev/{full,null,zero} now that they work just fine.Andreas Kling
2018-10-26Fix mixup between /dev/null and /dev/zero device registration.Andreas Kling