mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
Kernel: Move ELF-related files into Kernel/ELF/.
This commit is contained in:
parent
9fca94269e
commit
072ea7eece
Notes:
sideshowbarker
2024-07-19 14:50:46 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/072ea7eece8
7 changed files with 5 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <AK/OwnPtr.h>
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/AKString.h>
|
||||
#include <Kernel/exec_elf.h>
|
||||
#include <Kernel/ELF/exec_elf.h>
|
||||
#include <Kernel/types.h>
|
||||
|
||||
class ELFImage {
|
|
@ -24,8 +24,8 @@ KERNEL_OBJS = \
|
|||
FIFO.o \
|
||||
Scheduler.o \
|
||||
DoubleBuffer.o \
|
||||
ELFImage.o \
|
||||
ELFLoader.o \
|
||||
ELF/ELFImage.o \
|
||||
ELF/ELFLoader.o \
|
||||
KSyms.o \
|
||||
FileSystem/DevPtsFS.o \
|
||||
BXVGADevice.o \
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <Kernel/FileDescriptor.h>
|
||||
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
||||
#include <Kernel/NullDevice.h>
|
||||
#include "ELFLoader.h"
|
||||
#include <Kernel/ELF/ELFLoader.h>
|
||||
#include "MemoryManager.h"
|
||||
#include "i8253.h"
|
||||
#include "RTC.h"
|
||||
|
@ -20,7 +20,7 @@
|
|||
#include "KSyms.h"
|
||||
#include <Kernel/Socket.h>
|
||||
#include <Kernel/TTY/MasterPTY.h>
|
||||
#include <Kernel/exec_elf.h>
|
||||
#include <Kernel/ELF/exec_elf.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
|
||||
//#define DEBUG_IO
|
||||
|
|
Loading…
Add table
Reference in a new issue