mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
Kernel+LibC+Userland: Support mounting other kinds of filesystems
This commit is contained in:
parent
66a0a12435
commit
425c356288
Notes:
sideshowbarker
2024-07-19 12:39:25 +09:00
Author: https://github.com/bugaevc
Commit: 425c356288
Pull-request: https://github.com/SerenityOS/serenity/pull/456
Reviewed-by: https://github.com/awesomekling ✅
6 changed files with 58 additions and 46 deletions
|
@ -293,7 +293,7 @@ static u32 handle(RegisterDump& regs, u32 function, u32 arg1, u32 arg2, u32 arg3
|
|||
break;
|
||||
}
|
||||
case Syscall::SC_mount:
|
||||
return current->process().sys$mount((const char*)arg1, (const char*)arg2);
|
||||
return current->process().sys$mount((const char*)arg1, (const char*)arg2, (const char*)arg3);
|
||||
case Syscall::SC_reboot: {
|
||||
return current->process().sys$reboot();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue