Luna/apps
apio 16b0531d42
All checks were successful
continuous-integration/drone/push Build is passing
kernel+apps+base+tools: Use Ext2 for the root partition file system
init is now split into two parts: preinit, which lives in the initrd and prepares the root file system for init,
and the actual /usr/bin/init, which lives in the root partition and starts services and reaps zombies.

The kernel now looks for /bin/preinit instead of /bin/init as the executable for the init process.

All configuration files in initrd/etc have been moved to base/etc. (The plan is to have only moon and preinit in the initrd.)

Since the current Ext2 implementation is read-only (and it's on a CDROM so it would be read-only anyways),
/home/selene is a tmpfs (as well as /tmp), to allow for a writable home directory.

The system is slower now, but that's to expect since the Ext2 code doesn't use caching and the ATA code still uses PIO.
2023-07-10 13:05:06 +02:00
..
base64.cpp libos+apps: Use os::*print* instead of (f)printf 2023-05-01 19:32:00 +02:00
cat.cpp libos+apps: Make the vector argument more flexible 2023-07-08 16:44:02 +02:00
chmod.cpp libc: Move chmod from unistd.h to sys/stat.h 2023-05-11 19:40:34 +02:00
chown.cpp libc+apps: Avoid calling endpwent() and endgrent() after every call to get{pw,gr}{nam,uid,gid} 2023-05-18 21:47:46 +02:00
CMakeLists.txt kernel+apps+base+tools: Use Ext2 for the root partition file system 2023-07-10 13:05:06 +02:00
cp.cpp libos+cp: Add prompt functionality 2023-07-08 18:30:39 +02:00
date.cpp libos: Make long value arguments use '=' and make value arguments' values always required 2023-06-17 20:58:54 +02:00
edit.cpp ArgumentParser: Add support for version information 2023-04-28 16:33:05 +02:00
env.cpp kernel+libc+apps: Add support for environment variables 2023-04-07 15:03:38 +02:00
init.cpp kernel+apps+base+tools: Use Ext2 for the root partition file system 2023-07-10 13:05:06 +02:00
ipc-test.cpp kernel+libc: Add support for unnamed pipes 2023-05-10 22:48:31 +02:00
ln.cpp kernel+libc+ln: Add support for userspace hard link creation 2023-05-27 11:32:40 +02:00
login.cpp su: Do not change directory/set variables by default, instead add a --login option 2023-05-11 20:11:09 +02:00
ls.cpp libos: Make long value arguments use '=' and make value arguments' values always required 2023-06-17 20:58:54 +02:00
mkdir.cpp libluna/PathParser: Make dirname() and basename() static functions 2023-06-19 11:21:58 +02:00
mktemp.cpp apps: Add mktemp 2023-06-03 12:15:57 +02:00
mount.cpp mount: Put the source argument first 2023-06-25 20:35:36 +02:00
pivot_root.cpp kernel: Make the root inode be a mountpoint as well + add pivot_root() 2023-06-17 17:27:22 +02:00
preinit.cpp kernel+apps+base+tools: Use Ext2 for the root partition file system 2023-07-10 13:05:06 +02:00
ps.cpp apps: Add ps 2023-05-18 21:59:38 +02:00
rm.cpp ArgumentParser: Add support for version information 2023-04-28 16:33:05 +02:00
sh.cpp libos: Make long value arguments use '=' and make value arguments' values always required 2023-06-17 20:58:54 +02:00
stat.cpp kernel+libos+apps: Support block devices and disallow seeking character devices or pipes 2023-05-26 20:27:47 +02:00
su.cpp libc: Add getline() and getdelim() 2023-05-20 15:36:30 +02:00
sysfuzz.cpp libos: Make long value arguments use '=' and make value arguments' values always required 2023-06-17 20:58:54 +02:00
time.cpp libos+apps: Make the vector argument more flexible 2023-07-08 16:44:02 +02:00
umount.cpp kernel+libc+apps: Add mount and umount syscalls, libc wrappers, and utilities 2023-05-17 20:30:15 +02:00
uname.cpp ArgumentParser: Add support for version information 2023-04-28 16:33:05 +02:00