mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
Kernel/AK: Move ELF loader to AK
This is in preparation for eventually using it in userspace. LinearAddress.h has not been moved for the time being (as it seems to be only used by a very small part of the code).
This commit is contained in:
parent
5b3c4afff2
commit
6917c42140
Notes:
sideshowbarker
2024-07-19 13:58:59 +09:00
Author: https://github.com/rburchell
Commit: 6917c42140
Pull-request: https://github.com/SerenityOS/serenity/pull/76
Reviewed-by: https://github.com/awesomekling
8 changed files with 13 additions and 9 deletions
|
@ -6,7 +6,6 @@
|
|||
#include <Kernel/FileSystem/FileDescriptor.h>
|
||||
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
||||
#include <Kernel/Devices/NullDevice.h>
|
||||
#include <Kernel/ELF/ELFLoader.h>
|
||||
#include <Kernel/VM/MemoryManager.h>
|
||||
#include "i8253.h"
|
||||
#include "RTC.h"
|
||||
|
@ -19,7 +18,8 @@
|
|||
#include "KSyms.h"
|
||||
#include <Kernel/Net/Socket.h>
|
||||
#include <Kernel/TTY/MasterPTY.h>
|
||||
#include <Kernel/ELF/exec_elf.h>
|
||||
#include <AK/ELF/exec_elf.h>
|
||||
#include <AK/ELF/ELFLoader.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <AK/Time.h>
|
||||
#include <Kernel/SharedMemory.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue