mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Move ELFLoader code into Kernel/.
This commit is contained in:
parent
ac7a60225e
commit
44036f32bc
Notes:
sideshowbarker
2024-07-19 16:09:24 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/44036f32bc8
10 changed files with 5 additions and 27 deletions
17
Banner.txt
17
Banner.txt
|
@ -1,17 +0,0 @@
|
|||
.oooooo..o o8o .
|
||||
d8P' `Y8 `"' .o8
|
||||
Y88bo. .ooooo. oooo d8b .ooooo. ooo. .oo. oooo .o888oo oooo ooo
|
||||
`"Y8888o. d88' `88b `888""8P d88' `88b `888P"Y88b `888 888 `88. .8'
|
||||
`"Y88b 888ooo888 888 888ooo888 888 888 888 888 `88..8'
|
||||
oo .d8P 888 .o 888 888 .o 888 888 888 888 . `888'
|
||||
8""88888P' `Y8bod8P' d888b `Y8bod8P' o888o o888o o888o "888" .8'
|
||||
.o..P'
|
||||
`Y8P'
|
||||
|
||||
God, grant me the SERENITY
|
||||
to accept the things I cannot change
|
||||
COURAGE to accept the things I can
|
||||
and WISDOM to know the difference
|
||||
|
||||
===============================================================================
|
||||
|
3
ELFLoader/.gitignore
vendored
3
ELFLoader/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
|||
run
|
||||
*.o
|
||||
AK
|
|
@ -20,7 +20,9 @@ KERNEL_OBJS = \
|
|||
TTY.o \
|
||||
VirtualConsole.o \
|
||||
FIFO.o \
|
||||
Scheduler.o
|
||||
Scheduler.o \
|
||||
ELFImage.o \
|
||||
ELFLoader.o
|
||||
|
||||
VFS_OBJS = \
|
||||
../VirtualFileSystem/DiskDevice.o \
|
||||
|
@ -37,10 +39,6 @@ VFS_OBJS = \
|
|||
../VirtualFileSystem/FileDescriptor.o \
|
||||
../VirtualFileSystem/SyntheticFileSystem.o
|
||||
|
||||
ELFLOADER_OBJS = \
|
||||
../ELFLoader/ELFImage.o \
|
||||
../ELFLoader/ELFLoader.o
|
||||
|
||||
AK_OBJS = \
|
||||
../AK/String.o \
|
||||
../AK/StringImpl.o \
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "system.h"
|
||||
#include <VirtualFileSystem/FileDescriptor.h>
|
||||
#include <VirtualFileSystem/VirtualFileSystem.h>
|
||||
#include <ELFLoader/ELFLoader.h>
|
||||
#include "ELFLoader.h"
|
||||
#include "MemoryManager.h"
|
||||
#include "errno.h"
|
||||
#include "i8253.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#include <VirtualFileSystem/FileDescriptor.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include "MemoryManager.h"
|
||||
#include <ELFLoader/ELFLoader.h>
|
||||
#include "ELFLoader.h"
|
||||
#include "Console.h"
|
||||
#include "ProcFileSystem.h"
|
||||
#include "RTC.h"
|
||||
|
|
Loading…
Reference in a new issue