diff options
author | dzwdz | 2023-08-04 01:20:38 +0200 |
---|---|---|
committer | dzwdz | 2023-08-06 00:36:07 +0200 |
commit | a71120adf590f699c4b8d6249a340976575ea530 (patch) | |
tree | fa099b8552c1536e29f1a1a9ec2bb04663b8370b /src/user/bootstrap/main.c | |
parent | 2d7da42acbf2782636e481ebd79f30700fb7dc9e (diff) |
libc: fs_dirinject2 for injecting multiple paths
Diffstat (limited to 'src/user/bootstrap/main.c')
-rw-r--r-- | src/user/bootstrap/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/bootstrap/main.c b/src/user/bootstrap/main.c index 638585c..4e900f5 100644 --- a/src/user/bootstrap/main.c +++ b/src/user/bootstrap/main.c @@ -25,7 +25,7 @@ int main(void) { } _sys_mount(HANDLE_PROCFS, "/proc/", strlen("/proc/")); - MOUNT_AT("/") { fs_dir_inject("/proc/"); } + MOUNT_AT("/") { fs_dirinject("/proc/"); } MOUNT_AT("/init/") { tar_driver(&_initrd); } |