summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2018-10-28Add basic symlink support.Andreas Kling
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
2018-10-28Canonicalize the path used by sh.Andreas Kling
2018-10-28Add save/unsave cursor escape sequences.Andreas Kling
2018-10-28Colorize ls output.Andreas Kling
2018-10-28Give the shell a nice, colorful prompt.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-27Implement loading of linked ELF executables.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.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-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-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Implement argc/argv support for spawned tasks.Andreas Kling
2018-10-26Add sys$gethostname and /bin/hostnameAndreas Kling
2018-10-25Add /bin/false and /bin/true for fun. :^)Andreas Kling
2018-10-25Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().Andreas Kling
2018-10-25Add a "sleep" syscall that sleeps for N seconds.Andreas Kling
2018-10-25Implement errno in LibC.Andreas Kling
2018-10-25ELFLoader should fail with an error message for unresolved symbols.Andreas Kling
2018-10-24Add a "pwd" utility to userland.Andreas Kling
2018-10-24Add an lstat() syscall and use it to make "ls" nicer.Andreas Kling
2018-10-24Lots of hacking to make a very simple "ls" utility.Andreas Kling
2018-10-24Add simplified mmap() and munmap() syscalls.Andreas Kling
2018-10-24Add a simplified waitpid() so that sh can wait on spawned commands.Andreas Kling
2018-10-23Minor userland tweaks.Andreas Kling
2018-10-23Assume commands are binaries in /bin for now.Andreas Kling
2018-10-23Start adding a basic /proc filesystem and a "ps" utility.Andreas Kling
2018-10-23Lots of hacking:Andreas Kling
2018-10-22Okay, with some mucking around, there is now a /bin/id and it runs!Andreas Kling
2018-10-22Link "id" against the LibC.Andreas Kling
2018-10-22Import very modest Userland.Andreas Kling