diff options
author | dzwdz | 2023-08-10 00:07:35 +0200 |
---|---|---|
committer | dzwdz | 2023-08-10 00:07:35 +0200 |
commit | fe2767219e22eda853cb1ad30c44c49afc1bed66 (patch) | |
tree | 251531bc8cef34b8d7c31d421ba3a0ba9020198c /src/user/app/init | |
parent | 6126525ed2ad3fb2543c43dbca6b01106af02180 (diff) |
user/fs: no longer inject MOUNT_ATs by default
arguably the wrong choice from an usability standpoint, but the right choice
from a performance standpoint.
there's definitely a nicer way to do this
Diffstat (limited to 'src/user/app/init')
-rw-r--r-- | src/user/app/init/init.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/user/app/init/init.c b/src/user/app/init/init.c index 61fb27b..ca50699 100644 --- a/src/user/app/init/init.c +++ b/src/user/app/init/init.c @@ -45,9 +45,14 @@ int main(void) { MOUNT_AT("/") { fs_dirinject2((const char*[]){ - "/fake/b/c", - "/fake/c", - "/faker", + "/keyboard/", + "/usr/", + "/bin/", + "/Users/", + "/tmp/", + "/vtty", + "/net/", + "/initctl", NULL }); } |