Kernel/Userspace: Add basic init process

This process parses /etc/passwd and promps login screen.
When an username is entered, it will launch that users shell
This commit is contained in:
2023-06-11 21:01:02 +03:00
parent a0be415e09
commit 51eb44bf40
8 changed files with 173 additions and 15 deletions

View File

@@ -11,12 +11,9 @@
char** environ;
extern "C" void _init_stdio();
extern "C" void _init_libc(char** _environ)
{
environ = _environ;
_init_stdio();
}
void _exit(int status)