diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-28 20:59:11 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-28 20:59:11 +0100 |
commit | 6b150c794a4c71e36bd1e5e545be171d0e3b45d0 (patch) | |
tree | fb2ba6deacf57defc3c567b502f3c3be66872301 /Libraries/LibC/Makefile | |
parent | c10a5ac4ade2c70eee46bc401fd875e848393213 (diff) | |
download | serenity-6b150c794a4c71e36bd1e5e545be171d0e3b45d0.zip |
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.
Diffstat (limited to 'Libraries/LibC/Makefile')
-rw-r--r-- | Libraries/LibC/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |