Kernel: Add load_keymap syscall and load Finnish keymap in init

This commit is contained in:
2024-01-10 14:46:29 +02:00
parent 8f89519bcf
commit 51214ea1bf
8 changed files with 29 additions and 0 deletions

View File

@@ -11,3 +11,8 @@ int poweroff(int command)
{
return syscall(SYS_POWEROFF, command);
}
int load_keymap(const char* path)
{
return syscall(SYS_LOAD_KEYMAP, path);
}