Skip to content

Commit

Permalink
Move ELFLoader code into Kernel/.
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Dec 2, 2018
1 parent ac7a602 commit 44036f3
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 27 deletions.
17 changes: 0 additions & 17 deletions Banner.txt

This file was deleted.

3 changes: 0 additions & 3 deletions ELFLoader/.gitignore

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 3 additions & 5 deletions Kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Kernel/Process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Kernel/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 44036f3

Please sign in to comment.