From 6b150c794a4c71e36bd1e5e545be171d0e3b45d0 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 Nov 2019 20:59:11 +0100 Subject: Kernel: Implement very simple kernel module loading It's now possible to load a .o file into the kernel via a syscall. The kernel will perform all the necessary ELF relocations, and then call the "module_init" symbol in the loaded module. --- Libraries/LibC/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Libraries/LibC/Makefile') diff --git a/Libraries/LibC/Makefile b/Libraries/LibC/Makefile index 6c301e96ec..391984ddca 100644 --- a/Libraries/LibC/Makefile +++ b/Libraries/LibC/Makefile @@ -54,6 +54,7 @@ LIBC_OBJS = \ dlfcn.o \ libgen.o \ wchar.o \ + serenity.o \ syslog.o ASM_OBJS = setjmp.ao crti.ao crtn.ao -- cgit v1.2.3