summaryrefslogtreecommitdiff
path: root/Base/etc
AgeCommit message (Collapse)Author
2019-02-21Kernel+Userland: Implement setuid() and setgid() and add /bin/suAndreas Kling
Also show setuid and setgid bits in "ls -l" output. :^)
2019-02-10Base: Rename /users to /home.Andreas Kling
I didn't like seeing /users next to /usr. /home looks nicer.
2019-01-30Rename the default user to "anon" and give him a home directory.Andreas Kling
2019-01-24Let userland retain the window backing store while drawing into it.Andreas Kling
To start painting, call: gui$get_window_backing_store() Then finish up with: gui$release_window_backing_store() Process will retain the underlying GraphicsBitmap behind the scenes. This fixes racing between the WindowServer and GUI clients. This patch also adds a WSWindowLocker that is exactly what it sounds like.
2018-11-17Make bash-2.05b build with minimal changes.Andreas Kling
This is really neat. :^)
2018-11-06Add getgrent() family of functions.Andreas Kling
2018-10-31Add getpwent() family of functions to LibC.Andreas Kling
Also add a little /etc/passwd database. There's just me in there.